📜  python if else 面试题 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:50.014000             🧑  作者: Mango

代码示例1
days = int(input("How many days in a leap year? "))
if days == 366:
    print("You have cleared the test.")
print("Congrats!")