0
我開始使用Python專門的模塊pygame的,但是當我嘗試創建一個窗口,出現此錯誤蟒蛇AttributeError的:模塊「pygame的」有沒有屬性「顯示器」
>>> import pygame
>>> (width, height) = (300, 200)
>>> screen = pygame.display.set_mode((width, height))
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
screen = pygame.display.set_mode((width, height))
AttributeError: module 'pygame' has no attribute 'display'
請幫助我。
您可能需要調用'pygame.init()'第一 – njzk2
確保你沒有打電話給你自己的文件或文件夾'pygame.py'或者「pygame」。 – user2357112
你的解釋器中必須有意外超影的pygame,或者你的項目中的本地必須有一些名爲pygame的東西。這個電話對我來說非常好。 – idjaw