Commit 3e644e78 by BellCodeEditor

auto save

parent 4d4fd712
Showing with 11 additions and 4 deletions
...@@ -6,6 +6,13 @@ ...@@ -6,6 +6,13 @@
# 隐藏画笔 # 隐藏画笔
# 保留画布 # 保留画布
a=False import turtle
if a: # 创建画布
print('True') a=turtle.Screen()
\ No newline at end of file a.bgcolor('light green')
pen=turtle.Pen()
pen.penup() # 抬笔
pen.goto(100,0) # 移动100,0
pen.pendown()
pen.forward(100) #移动100步
turtle.done()
\ 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