📅  最后修改于: 2022-03-11 15:00:34.797000             🧑  作者: Mango
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