rank | ▲ | ✰ | vote | url |
---|---|---|---|---|
24 | 644 | 117 | 879 | url |
Python中有检查字符串包含的方法吗?
我正在找string.contains
或者string.indexof
方法.
我希望:
if not somestring.contains("blah"):
continue
你可以用in
啊:
if not "blah" in somestring: continue
或者:
if "blah" not in somestring: continue
原文: https://taizilongxu.gitbooks.io/stackoverflow-about-python/content/24/README.html