渲染龟模块的问题

时间:2017-04-15 16:27:50

标签: python turtle-graphics

我在使用IDLE时遇到了python turtle类的问题。

$ python --version
Python 2.7.12+

转动功能left()和right()不能正常工作。我尝试运行以下代码,我在此处找到:https://michael0x2a.com/blog/turtle-examples,示例4:

import turtle 

star = turtle.Turtle()

for i in range(50):
  star.forward(50)
  star.right(144)

turtle.done()

它不会导致预期的输出,这是一个明星。相反,你可以看到:

a straight horizontal line with three dots around it

该功能可在90度下工作。我可以画一个矩形。在任何其他角度,乌龟停止绘画。我也尝试用setworldcoordinates()调整分辨率,没有改变, 并搜索了python 2.7.13的文档(此处:https://docs.python.org/2/search.html?q=turtle&check_keywords=yes&area=default),但找不到任何特定的指示。我做错了什么?

0 个答案:

没有答案