我开始特别使用Python模块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'
请帮帮我。
答案 0 :(得分:1)
你可能用任何其他具有相同名称的文件(例如pygame.py可能在同一个文件中)使pygame库黯然失色
如果您使用的是Windows,只需在开始菜单的搜索框中搜索pygame.py即可。右键单击结果,然后单击&#34;打开文件位置&#34;。只需从文件夹中删除pyagame.py文件即可。 或者您可以通过以下方式打印违规模块的路径:
import pygame
print('Path to module:',pygame._file_)