以下是我收到的错误以及我编写的代码。我知道有类似的问题已被提出,但他们给出的解决方案与此案例无关。我似乎无法弄清楚为什么我收到此属性错误。我正在运行python 3.3和pygame。操作系统是ubuntu 12.10。我希望有人可以找到解决这个问题的方法,这样我就可以继续进行物理模拟了。
Traceback (most recent call last):
File "/media/lawton/D4B1-5B96/programming/Python/gamephysics.py", line 9, in <module>
screen = pygame.display.set_mode((width, height))
AttributeError: 'module' object has no attribute 'display'
import pygame
background_colour = (255,255,255)
(width, height) = (300, 200)
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('Tutorial 1')
screen.fill(background_colour)
pygame.display.flip()
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT():
running = False
答案 0 :(得分:2)
您正在使用另一个pygame
文件遮蔽 pygame.py
库,可能与gamephysics.py
位于同一位置。
打印出有问题的模块的文件路径:
import pygame
print('Path to pygame module:', pygame.__file__)
这将告诉您“流氓”模块的位置。找到后,将其重命名为其他内容。