首页热点问题发现等你来答
我要提问

为啥报错(python)

提问时间:2023-12-26 06:11 | 栏目 分享 举报已浏览【995】次


import turtle as ttime.sleep(10)
def watermelon(t, width, height, p_color="green", f_color="red"):
t.penup()
t.goto(0 - width / 2, 0 - height / 2)
t.pendown()
t.pensize(40)
t.pencolor(p_color)
t.fillcolor(f_color)
t.begin_fill()
for i in range(2):
t.forward(width)
t.left(90)
t.forward(height)
t.left(90)
t.forward(20)
t.end_fill()
def seed(t, x, y, r, c):
t.penup()
t.goto(x, y)
t.pendown()
t.color(c)
t.begin_fill()
for i in range(2):
t.circle(r, 90)
t.left(90)
t.end_fill()
def seeds(t, r=20, c="black"):
y = 120
for i in range(1, 5):
x = -240
for j in range(1, 7):
seed(t, x, y, r, c)
x = x + 90
y = y - 90
p1 = t.Turtle
#p1.hideturtle()
p2 = t.Turtle
#p2.hideturtle()
watermelon(p1, 600, 400, "lightgreen", "pink")
seeds(p2, c="yellow")

匿名网友 2023-12-26 06:14 精选回答

程序不止一个错,用变量设置不合理首先少了importtime#没有time模块,不能用time.sleep(10)的二是,既然用了importturtleast,怎么还要用p1=t.Turtle直接用p1=t就可以了同样p2=t.Turtle也要改为p2=t(其实p1,p2都可以不用的)最后不合理的是time.sleep(10)应该是放在程序最后,而不是在头上程序结果:

站长郑重提示:以上回答来自互联网网友,仅其代表个人观点,请谨慎参阅。

麻烦大家看一下这两张照片,是北京的哪个小...

这是中心小学的哦
1631 阅读 59 点赞

2018全科医学技能与实践学习班电子卡找不到了?

这个最好是联系学校学工处咨询,或直接拨打证书发放单位,因为别人是无法知道的。
4098 阅读 106 点赞

求2020届的语文三维设计总复习的电子文档

链接:https://pan.baidu.com/s/1HIAP66OHEzHMwSBp5mPGSQ...
9687 阅读 103 点赞

三年级试题。

10、您算错了,230-192=38。 
1751 阅读 52 点赞

初一年级下册

1、点A到直线BC的距离是线段 AB 的长度;点B到直线AC的距离是线段BD的长...
1629 阅读 80 点赞
最新问答
1南京本科毕业多久能评职称呢? 63 阅读 · 3 点赞
2中专生毕业后,能否考读大专? 89 阅读 · 14 点赞
3成都名师荟有几个校区? 81 阅读 · 12 点赞
4成人高考自己报名还是找机构报名? 41 阅读 · 14 点赞
5四川美术生,专业课预估240左右,可以参加校考吗? 56 阅读 · 11 点赞
6艺考结束了,是回学校还是去全日制? 106 阅读 · 15 点赞