码迷,mamicode.com
首页 > 编程语言 > 详细

Python 判断字符串是否含有指定字符or字符串

时间:2020-03-31 01:33:03      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:nbsp   div   F12   成员   esc   def   result   指定   abc   

Python 判断字符串是否含有指定字符or字符串 ,有如下方法:

1、使用成员操作符 in 

str1= "ABCDEF123descsf"
str2= "CD"
result = str2 in str1
print(result)  # True

 

2、使用string模块的find()  rfind  index()  rindex()

 

Python 判断字符串是否含有指定字符or字符串

标签:nbsp   div   F12   成员   esc   def   result   指定   abc   

原文地址:https://www.cnblogs.com/shenxiaolin/p/12602360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!