string ="some random text"
new_string = string.lower().split()
chars = {'a','b','c'}

for word in new_string:
    if chars & set(word):
        print(word)
        break