我们如何从Python元组中提取特定的关键字?

如果您有一个字符串元组,并且想要搜索特定的字符串,则可以使用in运算符。 

示例

tpl = ("Hello", "world", "Foo", "bar")
print("world" in tpl)

输出结果

这将给出输出-

True

如果要检查是否存在子字符串。您可以遍历元组并使用以下命令找到它:

tpl = ("Hello", "world", "Foo", "bar")
for i in tpl:
   if "orld" in i:
      print("Found orld in " + i )

输出结果

这将给出输出-

Found orld in world