python namedtuple函數(shù)的使用
先看演示
像類一樣的訪問屬性
from collections import namedtuple
Friend = namedtuple('Friend', ['name', 'gender', 'address', 'star', 'signature'])
RidingRoad = Friend('RidingRoad', 'male', 'Mars', 'The five-star high praise',
'Change the world by Program!\n'
'Do what you like!\n'
'Live what you want!')
print(RidingRoad.name)
print(RidingRoad.gender)
print(RidingRoad.address)
print(RidingRoad.star)
print(RidingRoad.signature)
RidingRoad male Mars The five-star high praise Change the world by Program! Do what you like! Live what you want!
類似字典的訪問
像字典一樣訪問items、keys、values
for key, value in RidingRoad.__dict__.items():
print(key, value)
print("*" * 30)
for key in RidingRoad.__dict__.keys():
print('{}: '.format(key), eval('RidingRoad.{}'.format(key)))
print("*" * 30)
for value in RidingRoad.__dict__.values():
print(value)
('name', 'RidingRoad')
('gender', 'male')
('address', 'Mars')
('star', 'The five-star high praise')
('signature', 'Change the world by Program!\nDo what you like!\nLive what you want!')
******************************
('name: ', 'RidingRoad')
('gender: ', 'male')
('address: ', 'Mars')
('star: ', 'The five-star high praise')
('signature: ', 'Change the world by Program!\nDo what you like!\nLive what you want!')
******************************
RidingRoad
male
Mars
The five-star high praise
Change the world by Program!
Do what you like!
Live what you want!
為什么可以這樣?
到這里,你應(yīng)該會有兩個疑問:
- 為什么有類的影子?
- 為什么有字典的影子?
源碼解析
為什么有類的影子?
看源碼的_class_template部分,其實函數(shù)內(nèi)部為我們創(chuàng)了一個類了
# Fill-in the class template
class_definition = _class_template.format(
typename = typename,
field_names = tuple(field_names),
num_fields = len(field_names),
arg_list = repr(tuple(field_names)).replace("'", "")[1:-1],
repr_fmt = ', '.join(_repr_template.format(name=name)
for name in field_names),
field_defs = '\n'.join(_field_template.format(index=index, name=name)
for index, name in enumerate(field_names))
)
if verbose:
print class_definition
然后_class_template干了什么?對類進行定義
_class_template = '''\
class {typename}(tuple):
'{typename}({arg_list})'
__slots__ = ()
_fields = {field_names!r}
def __new__(_cls, {arg_list}):
'Create new instance of {typename}({arg_list})'
return _tuple.__new__(_cls, ({arg_list}))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new {typename} object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != {num_fields:d}:
raise TypeError('Expected {num_fields:d} arguments, got %d' % len(result))
return result
def __repr__(self):
'Return a nicely formatted representation string'
return '{typename}({repr_fmt})' % self
def _asdict(self):
'Return a new OrderedDict which maps field names to their values'
return OrderedDict(zip(self._fields, self))
def _replace(_self, **kwds):
'Return a new {typename} object replacing specified fields with new values'
result = _self._make(map(kwds.pop, {field_names!r}, _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
'Return self as a plain tuple. Used by copy and pickle.'
return tuple(self)
__dict__ = _property(_asdict)
def __getstate__(self):
'Exclude the OrderedDict from pickling'
pass
{field_defs}
'''
為什么有字典的影子?
看源碼的 _asdict部分,這里封裝成了有序字典,所以我們可以通過__dict__訪問字典的特性了
__dict__ = _property(_asdict)
def _asdict(self):
'Return a new OrderedDict which maps field names to their values'
return OrderedDict(zip(self._fields, self))
以上就是python namedtuple函數(shù)的使用的詳細內(nèi)容,更多關(guān)于python namedtuple函數(shù)的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
詳解Python模塊化--模塊(Modules)和包(Packages)
這篇文章主要介紹了使用Python的模塊(Modules)和包(Packages),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-08-08
解決在keras中使用model.save()函數(shù)保存模型失敗的問題
這篇文章主要介紹了解決在keras中使用model.save()函數(shù)保存模型失敗的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-05-05
python基于FTP實現(xiàn)文件傳輸相關(guān)功能代碼實例
這篇文章主要介紹了python基于FTP實現(xiàn)文件傳輸相關(guān)功能代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2019-09-09
Python實現(xiàn)模擬瀏覽器請求及會話保持操作示例
這篇文章主要介紹了Python實現(xiàn)模擬瀏覽器請求及會話保持操作,結(jié)合實例形式分析了Python基于urllib與urllib2模塊模擬瀏覽器請求及cookie保存會話相關(guān)操作技巧,需要的朋友可以參考下2018-07-07

