python中的Turtle模块没有导入

时间:2015-08-24 11:15:00

标签: python turtle-graphics

这是我第一次在python中使用turtle模块,但我似乎无法导入它?
这是我的代码:

from turtle import *

pen1 = Pen()
pen2 = Pen()

pen1.screen.bgcolour("#2928A7") 

这是我得到的错误:

Traceback (most recent call last):
  File "C:\Python34\Python saves\turtle.py", line 2, in <module>
    from turtle import *
  File "C:\Python34\Python saves\turtle.py", line 5, in <module>
    pen1 = Pen()
NameError: name 'Pen' is not defined

谁能告诉我我做错了什么?

2 个答案:

答案 0 :(得分:5)

问题是您已将程序命名为“turtle.py”。

所以当Python看到声明时 from turtle import *
它找到的第一个名为turtle的匹配模块是你的程序,“turtle.py”。

换句话说,你的程序基本上是导入自己,不是乌龟图形模块。

以下是一些用于演示此问题的代码。

<强> turtle.py

#! /usr/bin/env python

''' Mock Turtle

    Demonstrate what happens when you give your program the same name
    as a module you want to import.

    See http://stackoverflow.com/q/32180949/4014959

    Written by PM 2Ring 2015.08.24
'''

import turtle

foo = 42
print(turtle.foo)
help(turtle)

我想我应该展示代码实际打印的内容......

turtle.py运行时,会打印以下“帮助”信息:

Help on module turtle:

NAME
    turtle - Mock Turtle

FILE
    /mnt/sda4/PM2Ring/Documents/python/turtle.py

DESCRIPTION
    Demonstrate what happens when you give your program the same name
    as a module you want to import.

    See http://stackoverflow.com/q/32180949/4014959

    Written by PM 2Ring 2015.08.24

DATA
    foo = 42

(END) 

当您点击Q退出帮助时,会再次显示帮助信息。当你第二次点击Q时,那么

42

42

已打印。

为什么“帮助”消息和42打印两次?这是因为turtle.py中的所有代码都是在导入时执行的,然后在<{em> {/ 1>}语句之后遇到时再次执行。请注意,Python不会尝试导入已导入的模块(除非明确告知使用import执行此操作)。如果Python 重新导入,那么上面的代码将陷入无限循环导入。

当以reload运行时,它会打印:

mockturtle.py

当然那是因为标准Traceback (most recent call last): File "./mock_turtle.py", line 16, in <module> print(turtle.foo) AttributeError: 'module' object has no attribute 'foo' 模块实际上没有turtle属性。

答案 1 :(得分:-1)

我认为解决方案是键入:

pen1 = turtle.Pen()