我想知道,有没有办法检查字符串列表中是否存在字符串;
我想要一些像:
a = ["one", "two", "three", "four"]
b = "three"
if b in a:
# return index of a
else:
# do something else
答案 0 :(得分:2)
如果你想要做的就是返回b里面的b的索引,如果b存在,那么如果不存在,那么试试这个: -
a = ["one", "two", "three", "four"]
b = "three"
try:
print a.index(b) #if inside the function, use return
except:
#do something2
答案 1 :(得分:0)
正如其他专家所说,我强烈建议您使用自己的Python 2.x / 3.x环境进行尝试。
如果由于某种原因没有手头,请尝试一些在线IDE,例如https://ideone.com/