banana = "banana" banana.find("a") #1 banana.find("a",2) #3
txt = "foobar" print("foo" in txt)
str="Hello, World!" print("World" in str) # True