Commit 8d19297e by BellCodeEditor

auto save

parent c5846d6c
Showing with 11 additions and 4 deletions
11,45,14
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
for i in range(5): for i in range(6):
pen.forward(100) pen.forward(100)
pen.right(144) pen.right(60)
turtle.done() turtle.done
\ No newline at end of file \ No newline at end of file
import csv
d = [11,45,14]
with open('sm.csv','w') as csvfile:
wirter = csv.writer(csvfile)
wirter.writerow(d)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment