import re
str = "The rain in Spain"
# 检查字符串是否包含 a 、r 或 n 字符:
x = re.findall("[arn]", str)
print(x)
if (x):
print("Yes, there is at least one match!")
else:
print("No match")