python技巧 namedtuple
2018-11-20 03:24:51来源:博客园 阅读 ()
python的namedtuple可以创建一个带字段名的元祖和一个带名字的类
In [1]: from collections import namedtuple ...: ...: nginx=namedtuple('nginx',['active','accepts','handled','requests','reading','writing','waiting']) ...: In [2]: get_nginx=nginx(1,2,3,4,11,111,22) In [3]: get_nginx.active Out[3]: 1 In [4]: get_nginx Out[4]: nginx(active=1, accepts=2, handled=3, requests=4, reading=11, writing=111, waiting=22)
namedtuple的几个属性
_fields 类属性
_make(iterable) 类方法
_asdict() 实例方法
In [7]: nginx._fields
Out[7]: ('active', 'accepts', 'handled', 'requests', 'reading', 'writing', 'waiting')
In [8]: get_nginx._asdict()
Out[8]:
OrderedDict([('active', 1),
('accepts', 2),
('handled', 3),
('requests', 4),
('reading', 11),
('writing', 111),
('waiting', 22)])
In [12]: new_nginx=(1,2,3,4,5,6,7)
In [13]: new=nginx._make(new_nginx)
In [14]: new
Out[14]: nginx(active=1, accepts=2, handled=3, requests=4, reading=5, writing=6, waiting=7)
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:常用模块-02
下一篇:Python的第二堂课(2)
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash