python模块collections中namedtuple()的理解



from collections import namedtuple


'''
namedtuple是继承自tuple的子类。namedtuple创建一个和tuple类似的对象,而且对象拥有可访问的属性。

Python中存储系列数据,比较常见的数据类型有list,除此之外,还有tuple数据类型。
相比与list,tuple中的元素不可修改,在映射中可以当键使用。tuple元组的item只能通过index访问,
collections模块的namedtuple子类不仅可以使用item的index访问item,还可以通过item的name进行访问。
可以将namedtuple理解为c中的struct结构,其首先将各个item命名,然后对每个item赋予数据。
'''

coordinate = namedtuple('Coordinate', ['x', 'y'])
co = coordinate(10,20)
print(co.x,co.y)
print(co[0],co[1])
co = coordinate._make([100,200])
print(co.x,co.y)
co = co._replace(x = 30)
print(co.x,co.y)
'''
10 20
10 20
100 200
30 200
'''

websites = [
    ('Sohu', 'http://www.google.com/', u'张朝阳'),
    ('Sina', 'http://www.sina.com.cn/', u'王志东'),
    ('163', 'http://www.163.com/', u'丁磊')
]

Website = namedtuple('Website', ['name', 'url', 'founder'])

for website in websites:
    website = Website._make(website)
    print(website)

 

from collections import namedtuple

# 定义一个namedtuple类型User,并包含name,sex和age属性。
User = namedtuple('User', ['name', 'sex', 'age'])

# 创建一个User对象
user = User(name='kongxx', sex='male', age=21)

# 也可以通过一个list来创建一个User对象,这里注意需要使用"_make"方法
user = User._make(['kongxx', 'male', 21])

print user
# User(name='user1', sex='male', age=21)

# 获取用户的属性
print user.name
print user.sex
print user.age

# 修改对象属性,注意要使用"_replace"方法
user = user._replace(age=22)
print user
# User(name='user1', sex='male', age=21)

# 将User对象转换成字典,注意要使用"_asdict"
print user._asdict()
# OrderedDict([('name', 'kongxx'), ('sex', 'male'), ('age', 22)])

本文地址:http://blog.csdn.net/kongxx/article/details/51553362

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值