Python第二天-元组的基本使用方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python第二天-元组的基本使用方法相关的知识,希望对你有一定的参考价值。
由于精力充沛,再来一篇博客压压惊!
元组(tuple)的用法和list基本一样,但是,元组不能删除修改,这是元组最关键的特性
1.定义元组
arr=("123","456","789")
2.获取第一个元素
arr=("123","456","789") print(arr[0]);
结果:123
3.遍历(迭代)
arr=("123","456","789") for a in arr: print(a);
结果:123
456
789
4.count()方法--统计指定元素在元组中出现的次数
arr=("123","456","123") count=arr.count("123") print(count);
结果:2
5.index():统计字符串在元组中第一次出现的位置
arr=("123","456","123") count=arr.index("123") print(count);
结果:0
6.测试删除元组中的数据:
arr=("123","456","123") del arr[0:1] print(arr);
结果:TypeError: ‘tuple‘ object does not support item deletion
---------------------------------结束----------------------------------------
还有精力?再来!!!
以上是关于Python第二天-元组的基本使用方法的主要内容,如果未能解决你的问题,请参考以下文章