python基础学习(八)元组
元组的定义
元组常用操作
在元组中有哪些常用的操作呢?按照如下操作就知道元组中提供了哪些方法:
- 在ipython3中定义一个元组,例如:info = ()
- 输入info. 按下tab键,ipython3就会提示元组所能使用的方法如下:
- 常用操作
- 取值和取索引:tuple[index]、tuple.index(obj)
# 1. 取值和取索引 print(info_tuple[0]) print(info_tuple.index("zhangsan"))
- 统计和计数:tuple.count(obj)、len(tuple)
# 2. 统计计数 print(info_tuple.count("zhangsan")) print(len(info_tuple))
- 取值和取索引:tuple[index]、tuple.index(obj)
循环遍历
info_tuple = ("zhangsan", 19, 1.55) # 使用for来遍历元组 for info in info_tuple: print(info)
元组的应用场景
info = ("wangwu", 28) print("我叫%s,今年%d岁" % info )
列表和元组之间的转换
本文来自博客园,作者:coder-qi,转载请注明原文链接:https://www.cnblogs.com/coder-qi/p/python-tuple.html