python随笔练

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python随笔练相关的知识,希望对你有一定的参考价值。

1)判断闰年

def year(Year,Mon,Day):

    if Year % 100 == 0:
        if Year % 400 == 0:
            return True
        else:
            return False
    else:
        if Year % 4 == 0:
            return True
        else:
            return False

print year(2008,1,2)


本文出自 “孔小发爱吃鱼” 博客,谢绝转载!

以上是关于python随笔练的主要内容,如果未能解决你的问题,请参考以下文章

百看不如一练, 247 个 Python 实战案例(附源代码)

百看不如一练, 247 个 Python 实战案例(附源代码)

开博纪念随笔一篇

Python随笔

python随笔记

python进阶练习之——算素数