文件名称:小狮子 python小案例 python程序
文件大小:2KB
文件格式:PY
更新时间:2023-07-17 05:56:24
小狮子 python小案例 python程序 python python源码
小狮子 python小案例 python程序 def hair(): # 画头发 t.penup() t.goto(-50, 150) t.pendown() t.fillcolor('#a2774d') t.begin_fill() for j in range(10): # 重复执行10次 t.setheading(60 - (j * 36)) # 每次调整初始角度 t.circle(-50, 120) # 画120度的弧 t.end_fill()