scient
scient一个用python实现科学计算相关算法的包,包括自然语言、图像、神经网络、优化算法、机器学习、图计算等模块。
scient源码和编译安装包可以在Python package index获取。
The source code and binary installers for the latest released version ar…
1、输入一个年份,输出是否为闰年。
#闰年条件:能被4整除但不能被100整除,或者能被400整除的年份都是闰年。 neval(input("请输入一个年份:"))
if (n%40 and n%100!0) or (n%4000):print("该年份是闰年")
els…