turtle

作者: Python_Camp | 来源:发表于2023-03-03 15:17 被阅读0次
import turtle as t  #小名
#from turtle import *color("lime")
#t = turtle
x = 0
for _ in range(30):
    #print(_)
    t.backward(50 + x) #
    t.left(60)
    x += 10
    t.color("green")
# guess who to be random choice?
# kevin 猜对是自己永远猜字

相关文章

网友评论

      本文标题:turtle

      本文链接:https://www.haomeiwen.com/subject/pfteldtx.html