0
謝謝你,我有這樣的模塊,庫,包間Python編程.....基礎
- 差異Python編程一些疑問。
- 內置和關鍵字之間有什麼區別。 例如:None,True is Builtins not keywords。
- 什麼用編寫的代碼(調用main方法)
if __name__=__main__:main
,而不是簡單的通話main()
- 我可以訪問類的屬性,用類名 像下面的代碼
代碼:
class A:
atri=9
def method(self):
print 'This is method'
def my():
print 'attribute access using Class name ',A.atri
print 'method calling using Class name ',A.method()
my()
這是多個問題。你應該單獨問他們 – 2011-06-09 05:13:48
你應該考慮閱讀教程以及已經涵蓋你的每個問題的現有問題。 – 2011-06-09 05:56:26
你標記了Python 3,但你的代碼是Python 2. :-) – 2011-06-09 05:58:53