pygame exe error
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