• 大小: 1.23KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2024-05-10
  • 语言: Python
  • 标签: 海龟画图  

资源简介


资源截图

代码片段和文件信息

import turtle as t #as的作用是将turtle库给予别名t
t.setup(80060070090)#width=800height=800 startx=100 starty=100
t.bgcolor(“red“)#背景颜色红色     #可以用t.screensize(800600“red“)
t.color(“yellow““yellow“)#画笔的颜色黄色
t.speed(8)#画笔画的速度
dian_mia = [(-300100)(-70180)(0110)(030)(-70-20)]
dian_sth = [055305-20]
for i in range(5):
    t.up()
    t.goto(dian_mia[i])
    t.setheading(dian_sth[i])#turtle.setheading(angle)设置当前朝向为angle角度。
    t.begin

评论

共有 条评论

相关资源