我沒有看過學習Python的完整教程,但我正在學習如何使用pygame。我知道Python的一些事情,但沒有這麼多 我現在試圖把一個背景圖像和教程說,我要使用此功能:嘗試與Python的遊戲,圖像的功能?
def load_image(filename, transparent=False):
try: image = pygame.image.load(filename)
except pygame.error, message:
raise SystemExit, message
image = image.convert()
if transparent:
color = image.get_at((0,0))
image.set_colorkey(color, RLEACCEL)
return image
但在我的編輯器(Pyscripter)行except pygame.error, message:
有一個sintaxis錯誤我不知道爲什麼,如果我刪除它,以raise開頭的行也有sintaxis錯誤...我該怎麼辦? 在此先感謝!
http://docs.python.org/2/tutorial /errors.html#handling-exceptions – zero323
提示:先學習語言,稍後再學習庫。在這裏和那裏觀看一些視頻教程並不會教你任何有價值的東西。 –
我知道是對的,但教程中說如果我不知道很多Python,並不重要,因爲他們會解釋它。 – RikuSoulz