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