私はpygameを使い始めたばかりで、少し問題があります。これが私のコードです...
pygame.locals から pygame、sys をインポート *
pygame.init()
DISPLAYSURF = pygame.display.set_mode((400, 300))
pygame.display.set_caption('Hello World!')
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.display.update()
そして、ここに私が得続けるエラーがあります...
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 1521, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Jason\Documents\Python\pygame.… line 1, in <module>
import pygame, sys
File "C:\Users\Jason\Documents\Python\pygame.… line 2, in <module>
from pygame.locals import *
ImportError: No module named 'pygame.locals'; pygame is not a package
だから私の質問は、pygameをpythonで動作させるにはどうすればよいですか? Python バージョン 3.3.2 pygame バージョン: Python 3.3 pygame-1.9.2pre(64 ビット)