我不知道脚本的错误在哪里(python3)

时间:2020-04-21 15:47:24

标签: python-3.x

如果日期或月份不正确,它应该只打印出来,非常感谢

enter image description here

1 个答案:

答案 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")