Skulpt不支持turtle.colormode函数吗?

时间:2016-09-10 21:38:12

标签: python skulpt

我是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'

0 个答案:

没有答案