我正在寻找Python 中的string.containsorstring.indexof方法。
string.containsorstring.indexof
我想要做:
if not somestring.contains("blah"): continue
您可以使用in运算符:
if "blah" not in somestring: continue