gpt4 book ai didi

python - 模块对象没有属性 'Screen'

转载 作者:太空狗 更新时间:2023-10-29 17:52:41 25 4
gpt4 key购买 nike

我正在自学 python this site .在 Chapter 3 ,当我输入给定示例中的代码时,出现以下错误--

Python 3.2 (r32:88445, Mar 25 2011, 19:28:28) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import turtle
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "turtle.py", line 2, in <module>
wn = turtle.Screen()
AttributeError: 'module' object has no attribute 'Screen'
>>>

这是我需要下载和安装的东西吗?我试着查看 docs.python.org,但我的 Nose 开始流血阅读所有这些技术内容。请指出我正确的方向好吗?谢谢。

最佳答案

Adam Bernier's answer可能是正确的。看起来您有一个名为 turtle.py 的文件,Python 在您的 Python 安装附带的那个文件之前正在获取该文件。

追踪这些问题:

% python
Python 2.7.1 (r271:86832, Jan 29 2011, 13:30:16)
[GCC 4.2.1 (Apple Inc. build 5664)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
[...] # Your ${PYTHONPATH}
>>> import turtle
>>> turtle.__file__
'/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/turtle.pyc' # Should be under your Python installation.
>>>

如果你看到这样的东西:

>>> import turtle
>>> turtle.__file__
'turtle.py'

然后,您需要移动当前文件中的 turtle.py(以及任何相应的 turtle.pycturtle.pyo 文件)工作目录不碍事。

根据下面的评论,您将通过调用 help() 找到有关模块的大量信息,包括其路径名和内容。例如:

>>> import turtle
>>> help(turtle)

关于python - 模块对象没有属性 'Screen',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6006871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com