📜  pygame exe错误-任何代码示例

📅  最后修改于: 2022-03-11 15:00:34.797000             🧑  作者: Mango

代码示例1
If your pygame app not working when you convert it to exe then
your problem is probably the font
font = pygame.font.Font(None, 32)
line 3 will not work. you have to specify which font you want
font = pygame.font.SysFont("comicsansms", 32)
line 5 will run no problem