对不起,伙计们浪费你的时间和一个新手在这里。今天我遇到了一个问题。这是我的代码:
from turtle import *
shape("turtle")
def draw_square(length,color):
for i in range(4):
forward(length)
color('color')
left(90)
return length,color
draw_square(100,'red')
mainloop()
该项目是使用带有 2 个参数的函数绘制一个 turlte 正方形: 'length' 和 'color' 。15 分钟前,我确实成功地根据项目要求正确绘制了图形。之后,我再次重新运行该项目,然后出现了这个问题。我完全死了。你们能帮帮我吗?非常感谢你。
这是 VS 对我说的:
Traceback (most recent call last):
File "ex3.py", line 15, in <module>
draw_square(100,'red')
File "ex3.py", line 9, in draw_square
color('color')
TypeError: 'str' object is not callable
梦里花落0921
相关分类