访问列表中的类的组件

时间:2017-05-05 01:07:49

标签: python arrays list

所以我的代码不起作用:

class Airport():
 def _init_ (self):
    self.Code_Icao=""
    self.Latitude=""
    self.Longitude=""
    self.Schengen=False
A=Airport()
A.Code_Icao="LMAO"
A.Latitude="12321412"
A.Longitude="12123123"
B=Airport()
B.Code_Icao="JEJE"
B.Latitude="1231231"
B.Longitude="123123"
v=[]
v.append(A.__dict__)
v.append(B.__dict__)
print v[0].Code_Icao

我不知道为什么它不允许我访问列表组件的代码 我一直收到这个错误:

  

Traceback(最近一次调用最后一次):文件   “/Users/marc/PycharmProjects/untitled5/read.py”,第18行,in       print v [0] .Code_Icao AttributeError:'dict'对象没有属性'Code_Icao'

0 个答案:

没有答案