Commit f40d9112 by BellCodeEditor

auto save

parent 243dd6d5
Showing with 17 additions and 0 deletions
import turtle
import random
t = turtle.Turtle()
t.penup()
t.goto(-200,0)
text="你好,我的名字叫小贝"
for i in text:
font_size = random.randint(10,30)
t.pendown()
t.write(i,font=("Arial",font_size,"normal"))
jump_distance=random.randint(20,50)
t.penup()
t.forward(jump_distance)
t.heading()
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