Commit 0bb75129 by BellCodeEditor

save project

parent f7d627fc
Showing with 18 additions and 0 deletions
import turtle
import random
t=turtle.Turtle()
t.penup()
t.goto(-200,0)
g="你好,SB,我的name叫你爹,我是个大聪明!"
for char in g :
font_size=random.randint(-100,100)
t.pendown()
t.write(char,font=("Arial",font_size,"normal"))
jump_distance=random.randint(20,50)
t.penup()
t.forward(jump_distance)
t.hideturtle()
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