0
贖回當我運行這段代碼:類型錯誤:「元組」的對象是不是pygame的
SURFACER = SURFACEFONT.get_rect()
SURFACER.center(400, (ipnum*100))
我得到這個錯誤:
File "index.py", line 62, in <module>
myFunction()
File "index.py", line 55, in drawGamesToScreen
SURFACER.center(400, ipnum*100)
TypeError: 'tuple' object is not callable
我想你想在矩形元組以外的東西上運行'.center()'。也許在'SURFACEFONT'上? –
看起來像是它而不是中心是一個元組屬性,而不是一個函數。 – polku
+ Klaus D.不,那沒用。它返回了錯誤: AttributeError:'pygame.Surface'對象沒有屬性'center' – otherwall