>>> 'A'.isalpha() True >>> '1'.isalpha() False
txt = "foobar" print("foo" in txt)
str="Hello, World!" print("World" in str) # True