Commit e10632f8 by BellCodeEditor

auto save

parent 10e6a912
Showing with 16 additions and 4 deletions
file=open('C:\\Users\\legao-001\\Desktop\\35487888974454545.txt','w',encoding='UTF-8')
file.write('a')
file.close()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(-100,100)
pen.pendown()
for i in range(4):
pen.forward(200)
pen.right(90)
pen.penup()
pen.fillcolor("blue")
pen.goto(0,50)
pen.pendown()
pen.begin_fill()
pen.circle(-50)
pen.end_fill()
\ 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