标签:内容 contains find 方法 包含 过程 备份 常用 pytho
把做工程过程中经常用到的内容段做个备份,下边内容是关于python判断字符串是否包含另一字符串的方法的内容。
contains = ‘abcde‘.find(‘bcd‘) >= 0
方法二:
contains = ‘abcde‘.count(‘bcd‘) > 0
标签:内容 contains find 方法 包含 过程 备份 常用 pytho
原文地址:https://www.cnblogs.com/cantury/p/11473891.html