python判断一个字符串是否包含另外一个字符串
python判断字符串包含的方法,所有语言中,python的这种判断方法可以说是最直观简单的。
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/18 修改日期:2022/3/18 功能描述:python判断一个字符串是否包含另外一个字符串 """ exists = False my_string = "pidancode.com" if "pidan" in my_string: exists = True if exists is True: print("字符串包含pidan")
以上代码在Python3.9环境测试通过
相关文章