python 判断字符串是否包含某个子字符串

By 刘志军 , 2020-06-07, 分类: qa

str

判断字符串是否包含某个子字符串,我们可以使用 in 或者 not in 操作符判断子字符串是否包含在字符串里面。

if "abc" in text:
    pass

if "abc" not in text:
    pass

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2015-12-10
Python字符串对象实现原理