Python列表和元组的定义与使用操作示例


Posted in Python onJuly 26, 2017

本文实例讲述了Python列表和元组的定义与使用操作。分享给大家供大家参考,具体如下:

#coding=utf8
print '''''
可以将列表和元组当成普通的“数组”,它能保存任意数量任意类型的Python对象。
列表和元组通过数字索引来访问元素(从0开始)。
列表和元组的区别:
------------------------------------------------------------------------------------
          元组              \             列表
------------------------------------------------------------------------------------
列表元素用中括号[]            \  元组元素用小括号()
元素的个数及元素的值可以改变   \  元素的个数及元素的值不可改变
------------------------------------------------------------------------------------
元组可以看出只读的列表。
列表和元组可以通过使用索引运算符([])和切片运算符([:])可以得到子集
'''
NumberList=[1,2,3,4,5,6,7,8.9,0101,017,0xab]
StringList=['hello',"hello world",'''''goddness''']
MixList=[12,13.2,01,'abc','hello']
NumberTouple=(1,2,3,4,5,6,7,8.9,0101,017,0xab)
StringTouple=('hello',"hello world",'''''goddness''')
MixTouple=(12,13.2,01,'abc','hello')
print "output the element of the NumberList by index--------->",NumberList[0],NumberList[1],NumberList[2],NumberList[-1]
print "output the element of the StringList by index--------->",StringList[0],StringList[1],StringList[2],StringList[-1]
print "output the element of the MixList by index--------->",MixList[0],MixList[1],MixList[2],MixList[-1]
print "output the element of the NumberTouple by index--------->",NumberTouple[0],NumberTouple[1],NumberTouple[2],NumberTouple[-1]
print "output the element of the StringTouple by index--------->",StringTouple[0],StringTouple[1],StringTouple[2],StringTouple[-1]
print "output the element of the MixTouple by index--------->",MixTouple[0],MixTouple[1],MixTouple[2],MixTouple[-1]
print "output the element of the NumberList by slice--------->",NumberList[0:2],NumberList[1:3],NumberList[0:],NumberList[:-1]
print "output the element of the StringList by slice--------->",StringList[0:1],StringList[2:3],StringList[0:],StringList[:-1]
print "output the element of the MixList by slice--------->",MixList[0:],MixList[:1],MixList[0:2],MixList[2:-1]
print "output the element of the NumberTouple by slice--------->",NumberTouple[0:2],NumberTouple[1:3],NumberTouple[2:],NumberTouple[:-1]
print "output the element of the StringTouple by slice--------->",StringTouple[0:2],StringTouple[1:3],StringTouple[2],StringTouple[-1]
print "output the element of the MixTouple by slice--------->",MixTouple[0:],MixTouple[1:3],MixTouple[2],MixTouple[:-1]
NumberList[0]=59
#NumberTouple[0]=56
print "Change the value of NumberList[0] to 59------------",NumberList[0]
#print "Can not change the value of NumberTouple[0] to 56------------",NumberTouple[0]

运行结果:

Python列表和元组的定义与使用操作示例

更多Python相关内容感兴趣的读者可查看本站专题:《Python列表(list)操作技巧总结》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
Python Web框架Flask中使用新浪SAE云存储实例
Feb 08 Python
利用python写个下载teahour音频的小脚本
May 08 Python
python中利用队列asyncio.Queue进行通讯详解
Sep 10 Python
python+opencv识别图片中的圆形
Mar 25 Python
python基础学习之如何对元组各个元素进行命名详解
Jul 12 Python
pytorch对梯度进行可视化进行梯度检查教程
Feb 04 Python
django之从html页面表单获取输入的数据实例
Mar 16 Python
python实现音乐播放和下载小程序功能
Apr 26 Python
Python基于smtplib协议实现发送邮件
Jun 03 Python
python里的单引号和双引号的有什么作用
Jun 17 Python
Pycharm制作搞怪弹窗的实现代码
Feb 19 Python
Python爬虫基础初探selenium
May 31 Python
老生常谈Python之装饰器、迭代器和生成器
Jul 26 #Python
python基础之入门必看操作
Jul 26 #Python
Python简单定义与使用字典dict的方法示例
Jul 25 #Python
Python学习入门之区块链详解
Jul 25 #Python
Python列表list解析操作示例【整数操作、字符操作、矩阵操作】
Jul 25 #Python
Python中的错误和异常处理简单操作示例【try-except用法】
Jul 25 #Python
Python中函数及默认参数的定义与调用操作实例分析
Jul 25 #Python
You might like
实用函数4
2007/11/08 PHP
用来解析.htpasswd文件的PHP类
2012/09/05 PHP
PHP中的按位与和按位或操作示例
2014/01/27 PHP
PHP日期函数date格式化UNIX时间的方法
2015/03/19 PHP
MySql数据库查询结果用表格输出PHP代码示例
2015/03/20 PHP
人脸识别测颜值、测脸龄、测相似度微信接口
2016/04/07 PHP
js中的window.open返回object的错误的解决方法
2009/08/15 Javascript
JavaScript 函数调用规则
2009/09/14 Javascript
JS面向对象编程浅析
2011/08/28 Javascript
javascript时间自动刷新实现原理与步骤
2013/01/06 Javascript
js判断两个日期是否相等的方法
2013/09/10 Javascript
jquery中get和post的简单实例
2014/02/04 Javascript
JS倒计时代码汇总
2014/11/25 Javascript
JavaScript操作XML文件之XML读取方法
2015/06/09 Javascript
jquery单击事件和双击事件冲突解决方案
2016/03/02 Javascript
React Native如何消除启动时白屏的方法
2017/08/08 Javascript
解决Js先触发失去焦点事件再执行点击事件的问题
2018/08/30 Javascript
vue1.0和vue2.0的watch监听事件写法详解
2018/09/11 Javascript
快速搭建Node.js(Express)用户注册、登录以及授权的方法
2019/05/09 Javascript
bootstrap-table+treegrid实现树形表格
2019/07/26 Javascript
Vue使用自定义指令实现拖拽行为实例分析
2020/06/06 Javascript
python使用正则表达式检测密码强度源码分享
2014/06/11 Python
Python列表(list)、字典(dict)、字符串(string)基本操作小结
2014/11/28 Python
Python中扩展包的安装方法详解
2017/06/14 Python
Python自定义线程类简单示例
2018/03/23 Python
python交换两个变量的值方法
2019/01/12 Python
python里 super类的工作原理详解
2019/06/19 Python
python实现图片插入文字
2019/11/26 Python
浅谈python之自动化运维(Paramiko)
2020/01/31 Python
python设置代理和添加镜像源的方法
2020/02/14 Python
Janie and Jack美国官网:GAP旗下的高档童装品牌
2019/09/09 全球购物
物业管理大学生个人的自我评价
2013/10/10 职场文书
《微笑着面对生活》优秀演讲稿范文
2014/09/23 职场文书
终止劳动合同通知书
2015/04/16 职场文书
公开致歉信
2019/06/24 职场文书
发工资啦!教你用Python实现邮箱自动群发工资条
2021/05/10 Python