#partition for strings SYNTAX: string.partition(value) EXAMPLE: txt = "I could eat bananas all day" x = txt.partition("bananas") print(x)