import re
str = "The rain in Spain"
# 返回所有空白字符的匹配项:
x = re.findall("\s", str)
print(x)
if (x):
print("Yes, there is at least one match!")
else:
print("No match")