Commit d691484d by BellCodeEditor

save project

parent c66a449e
Showing with 28 additions and 3 deletions
import turtle
#创建画笔
pen=turtle.Pen
#写字
pen=turtle.Pen()
pen.write("你好\nB",font=("Times",30,"normal"))
pen.hideturtle()
turtle.done()
pen.write("我真的\n真的\n真的\n比李老师帅",font=("Time",30,"normal"))
\ No newline at end of file
#创建画布
import turtle
#创建画笔
pen=turtle.Pen()
#写字
pen.write("我真的\n真的\n真的\n比李老师帅",font=("Time",45,"normal"))
#隐藏画笔
pen.hideturtle()
#保存画布
turtle.done()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.write("S\nD",font=("Times",66,"normal"))
pen.hideturtle()
turtle.done()
\ No newline at end of file
......@@ -4,9 +4,7 @@ screen=turtle.Screen()
screen.bgcolor("light blue")
len=screen.textinput("100","100")
len=int(len)
pen=turtle.Pen()
pen.write("你好\nSB.",font=("Times",30,"normal"))
pen.hideturtle()
len=60
pen.penup()
pen.goto(100,100)
......
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