I can use this to determine whether or not any of a set of multiple strings exist in another string,
bar = 'this is a test string'
if any(s in bar for s in ('this', 'test', 'bob')):
print("found")
but I'm not sure how to check if any of a set of multiple strings occur in any of many strings. It seems like this would work. Syntactically it does not fail, but it doesn't print me out anything either:
a = 'test string'
b = 'I am a cat'
c = 'Washington'
if any(s in (a,b,c) for s in ('this', 'test', 'cat')):
print("found")