python_列表/元组/元组列表以及如何使用
Posted 蛹人自扰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_列表/元组/元组列表以及如何使用相关的知识,希望对你有一定的参考价值。
1、list是处理一组有序项目的数据结构
1 #定义一个列表 2 list=[1,2,3] 3 print type(list) 4 print list[0]
输出:
<type ‘list‘>
1
2、元组与列表类似,支持异构,任意嵌套
1 #定义一个元组 2 tuple1 = (4,5,6) 3 print type(tuple1) 4 print tuple1[1]
输出:
<type ‘tuple‘>
5
1 #定义一个元组列表 2 tuple2 = [(1,2,3),(4,5,6)] 3 print type(tuple2) 4 print tuple2[0] 5 print tuple2[0][1]
输出:
<type ‘list‘>
(1, 2, 3)
2
以上是关于python_列表/元组/元组列表以及如何使用的主要内容,如果未能解决你的问题,请参考以下文章