如果您有一个字符串元组并且想要搜索特定字符串,您可以使用 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("在 " + i 中找到 orld")输出这将给出输出 - 在 world 中找到 orld