主代码 ''' Function: 外星人入侵小游戏 ''' importos importsys importcfg importrandom importpygame frommodulesimport '''开始游戏''' defstartGame(screen): clock=pygame.time.Clock() 加载字体 font=pygame.font.SysFont('arial',18) ifnotos.path.isfile('score'): f=open('score','w') f.write('0') f.close() withopen('score','r...