Commit 3e644e78 by BellCodeEditor

auto save

parent 4d4fd712
Showing with 11 additions and 4 deletions
......@@ -6,6 +6,13 @@
# 隐藏画笔
# 保留画布
a=False
if a:
print('True')
\ No newline at end of file
import turtle
# 创建画布
a=turtle.Screen()
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