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

python判断字符串是否包含另一字符串的方法的代码

时间:2019-09-06 13:09:40      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:内容   contains   find   方法   包含   过程   备份   常用   pytho   

把做工程过程中经常用到的内容段做个备份,下边内容是关于python判断字符串是否包含另一字符串的方法的内容。


contains = ‘abcde‘.find(‘bcd‘) >= 0




方法二:



contains = ‘abcde‘.count(‘bcd‘) > 0




 

python判断字符串是否包含另一字符串的方法的代码

标签:内容   contains   find   方法   包含   过程   备份   常用   pytho   

原文地址:https://www.cnblogs.com/cantury/p/11473891.html

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