Result Size: 625 x 571
demo_regex_seq1.py:
x
 
import re
txt = "The rain in Spain"
#Check if the string starts with "The":
x = re.findall("\AThe", txt)
print(x)
if (x):
  print("Yes, there is a match!")
else:
  print("No match")
C:\Users\My Name>python demo_regex_seq1.py
['The']
Yes, there is a match!