最佳答案
如何检查数组中的任何字符串是否存在于另一个字符串中?
如:
a = ['a', 'b', 'c']
str = "a123"
if a in str:
print "some of the strings found in str"
else:
print "no strings found in str"
这段代码不起作用,它只是为了显示我想要实现的目标。