如果日期或月份不正确,它应该只打印出来,非常感谢
答案 0 :(得分:1)
我建议您将代码直接嵌入到帖子中,以方便人们查看。
这是一个有效的代码:
day = (int(input("Enter the day : ")))
month = (int(input("Enter the month : ")))
if day < 1 or day > 31:
print("Incorrect day value entered!")
elif month > 12 or month < 1:
print("Incorrect month value entered!")
else :
print("The month & day entered are valid")