Pythonlambda表达式
收起
year = int(input()) judge = lambda x : (x%4 ==0 and x % 100 != 0) or (x%400 == 0) print(judge(year))
报告相同问题?