Python是否有一个字符串“包含”子字符串方法?我在找一个string.contains或string.indexof方法。我想做的是:if not somestring.contains("blah"):
continue
3 回答
海绵宝宝撒
TA贡献1809条经验 获得超8个赞
if needle in haystack:
in
key=
'haystack'.__contains__
if
添加回答
举报
0/150
提交
取消