Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 pygame 在 Python 上制作游戏。我一直在使用在线教程,他们都说我应该导入 pygame.locals。但每次我运行这个,这个错误: ImportError: No module named locals.
有什么帮助吗?
您可能没有先导入 pygame。
你需要先导入 pygame,然后才能导入 pygame.locals,所以你必须有
import pygame import pygame.locals