我是Skulpt的新手,发现它并不完全支持海龟模块。是这样吗?例如,当我尝试调用turtle.colormode 函数(代码如下)时,它会生成一个错误,即colormode 不是模块的属性,请参阅下面的详细信息。
代码(与 Skulp 网站上的示例相同,但第 3 行除外):
import turtle
turtle.colormode(255) # new line of code causing error
t = turtle.Turtle()
for c in ['red', 'green', 'yellow', 'blue']:
t.color(c)
t.forward(75)
t.left(90)
错误:
Traceback (most recent call last):
File "<stdin>.py", line 3, in <module>
turtle.colormode(255)
AttributeError: '<invalid type>' object has no attribute 'colormode'