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