2014-05-18 19 views
-3

我剛剛在pygame中完成了一個遊戲,並且我得到了無效的語法錯誤,有幫助嗎?我完成了在Pygame中的遊戲,當我運行它時,我得到了一個無效的語法錯誤

import pygame 

import random 

pygame.font.init() 

NP = false 

MP = false 

Font = pygame.font.SysFont("", 100) 

Font2 = pygame.font.SysFont("", 300) 

Font3 = pygame.font.SysFont("",55) 

ann = font2.render("Press space to start", 1, (255, 255, 255) 

NPFont1 = Font3.render ("Normal", 1, (0,0,0) 

NPFont2 = Font3.render ("Play", 1, (0,0,0) 

NPFont1 = Font3.render ("Single", 1, (0,0,0) 

NPFont2 = Font3.render ("Play", 1, (0,0,0) 
+1

你錯過了許多左括號''''。另外,''假''='假'。 – jonrsharpe

回答

0

缺少很多括號。

ann = font2.render("Press space to start", 1, (255, 255, 255)) 

NPFont1 = Font3.render ("Normal", 1, (0,0,0)) 

NPFont2 = Font3.render ("Play", 1, (0,0,0)) 

NPFont1 = Font3.render ("Single", 1, (0,0,0)) 

NPFont2 = Font3.render ("Play", 1, (0,0,0)) 
+0

感謝您的幫助。 – user3650210

相關問題