a6657266的个人博客分享 http://blog.sciencenet.cn/u/a6657266

博文

python中tuple的用法

已有 5511 次阅读 2013-7-10 09:46 |系统分类:科研笔记| Python, tuple

http://docs.python.org/2/tutorial/datastructures.html#SECTION007300000000000000000


tuple是由逗号分开的

>>> t=12345,54321,'hello!'

>>> t[0]12345

>>> t(12345, 54321, 'hello!')


>>> # Tuples may be nested:

... u=t,(1,2,3,4,5)

>>> u

((12345, 54321, 'hello!'), (1, 2, 3, 4, 5))


tupe中元素值不能更改,可以用做dictionary key。

>>> x,y,z=t






 



https://blog.sciencenet.cn/blog-571755-706870.html

上一篇:python中的list用法简单小结
下一篇:python中换行符
收藏 IP: 210.72.26.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-10-15 20:19

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部