1- 字典-内置数据结构,数据值与键值关联

键-字典中查找部分

值-字典中数据部分

使用dict()工厂函数或者只用{}可以创建一个空字典

>>> list = {}
>>> list['name']='hello'
>>> list['pwd']='world'
>>> list['name']
'hello'
>>> list['Occupation']=['','','']
>>> list['Occupation'][-1]
''
>>> list['Occupation'][-2]
''

2- 类 用def __init__()方法初始化对象实例

类中每个方法都必须提供self作为第一个参数

类中每个属性前面都必须有self,从而将数据与其实例关联

类可以从0创建,也可以从python内置类或其他定制类继承

类可以放置到模块中

从0创建

 class hi:
def __init__(self, a_name, a_dob=None, a_times=[]):
self.name = a_name
self.dob = a_dob
self.times = a_times sarah = hi('sarah', '2002-1-1', ['','','','-1'])
james = hi('james') print(type(sarah))
print(type(james)) print(sarah)
print(james) print(sarah.name + ' ' +str (sarah.dob) + ' ' +str(sarah.times))
print(james.name + ' ' +str (james.dob) + ' ' +str(james.times))

继承内置类

 class NameList(list):
def __init__(self,a_name):
list.__init__([])
self.name = a_name johnny = NameList("John Paul Jones")
print(type(johnny))
print(dir(johnny)) johnny.append("Bass Player")
johnny.extend(["a","b","c"])
print(johnny)
print(johnny.name)
05-06 07:04