import re
str = "The rain in Spain"
# 检查字符串是否以 "The" 开头:
x = re.findall("\AThe", str)
print(x)
if (x):
print("Yes, there is a match!")
else:
print("No match")