天天看點

ziheng - for循環

# 用for循環來畫一個五角星
import turtle as t
a =295
b = 100
t.speed(0) # 速度 speed 1-10
# 圓 circle
t.color("blue")
# pen size
for i in range(1000):
    t.fd(i)  # i 是 0 499
    t.lt(i)  # i 是 0-499
    t.pensize(i/50)
    t.circle(i,60)
    t.lt(345)
    t.write("子恒")
t.done()