Python 判断字符串是否含有指定字符or字符串 ,有如下方法:
1、使用成员操作符 in
str1= "ABCDEF123descsf" str2= "CD" result = str2 in str1 print(result) # True
2、使用string模块的find() rfind index() rindex()
原文地址:https://www.cnblogs.com/shenxiaolin/p/12602360.html
时间: 2024-10-27 07:19:52