Python的元组与列表类似,不同之处在于元组的元素不能修改。元组使用小括号,列表使用方括号。本文主要介绍Python 判断元组中是否存在指定值。

Python 常用术语

1、判断元组中是否存在指定值

确定元组中是否存在指定的值,请使用in关键字:

例如:

检查元组中是否存在"python":

thistuple = ("c", "java", "python")
if "python" in thistuple: print("Yes, 'python' is a programming language")

相关文档:

Python元组教程

Python 元组

Python 访问元组元素

Python 改变元组的值

Python 循环遍历元组

Python 判断元组中是否存在指定值

Python 元组长度

Python 定义带有一个元素的元组

Python 删除元组元素

Python 连接合并两个元组

Python 常用术语

推荐文档