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