demo_string_in.py:
txt = "The rain in Spain stays mainly in the plain" x = "ain" in txt print(x)
C:\Users\My Name>python demo_string_in.py
True