2010-12-05 91 views

回答

0

假設Sprite是你對付類...

這是你如何訪問一個對象的屬性:

>>> a = Sprite() 
>>> a.top 

這是你如何訪問類屬性:

>>> Sprite.top 

這是你在找什麼?

相關問題