Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import re txt = "hello planet" #Check if the string ends with 'planet': x = re.findall("planet$", txt) if x: print("Yes, the string ends with 'planet'") else: print("No match")
Yes, the string ends with 'planet'