0

以下是我收到的错误和我编写的代码。我知道有人问过类似的问题,但他们给出的解决方案与本案无关。而且我似乎无法弄清楚为什么我会收到此属性错误。我正在运行 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
4

1 回答 1

2

您正在使用另一个文件隐藏库,可能与.pygamepygame.pygamephysics.py

打印出问题模块的文件路径:

import pygame

print('Path to pygame module:', pygame.__file__)

这将向您显示“流氓”模块的位置。找到后,将其重命名为其他名称。

于 2013-05-19T19:23:58.453 回答