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