Leap Year 发表于 2015-06-27 | 分类于 Others | 直接明了的关于润年的算法: 12def is_leap(year): return ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)