蓝大伟 发表于 2020-8-19 18:24:32

pygame问题

import pygame

pygame.init()

print("ssss")

pygame.quit()



Traceback (most recent call last):
File "C:/Users/tlan2/PycharmProjects/david/pygame.py", line 1, in <module>
    import pygame
File "C:\Users\tlan2\PycharmProjects\david\pygame.py", line 3, in <module>
    pygame.init()
AttributeError: partially initialized module 'pygame' has no attribute 'init' (most likely due to a circular import)

zltzlt 发表于 2020-8-19 18:25:32

你的文件名不要命名为 pygame.py,用其他的名字

永恒的蓝色梦想 发表于 2020-8-19 18:27:33

zltzlt 发表于 2020-8-19 18:25
你的文件名不要命名为 pygame.py,用其他的名字

正解
页: [1]
查看完整版本: pygame问题