首先,我們可以將對象添加到Python字典中嗎?其次,我們如何打印對象的屬性。 有我的代碼從字典打印對象的屬性-python
在我c.py
class C(object):
def __init__(self):
self.wage = 0.0
def setwage(self,wage):
self.wage=wage
def getwage(self):
return self.wage
在我a.py
import c
dustin = c.C()
dustin.setwage(6.9)
dic={}
# can I add dustin as an object into dic?
dic['1st employee']=dustin
for a in dic.items():
# I want to print dustin object's attribute wage
print("wage:", a.getwage())
你怎麼可能有如此高的聲譽,並不能解決像這樣簡單的事情? –
@詹姆斯米爾一個*編輯*問題不是一個*問* – alko
哦,我明白了嗎?!我很困惑:) –