I'm trying to determine if any characters from a string1 are in another string2
example:
string1 = "abcdefghijklmnopqrstuvwxyz"
any of the characters from this string1 are in this string2 for example:
string2="HELLO WoRLD"
but i want to do so without using any loops, is there anything that can be done in python maybe using the in statement