只要判断结果大于 0 就说明子串存在于字符串中。 def is_in(full_str, sub_str): return full_str.count(sub_str) > 0 print(is_in("hello, python", "llo")) # True print(is_in("hello, python", "lol")) # False 1. 2. 3. 4. 5、通过魔法方法 在第一种方法中,我们使用 in 和 not ...