python二级练习(2)

时间:2021-10-12 11:10:36

2. 写一个算法(流程图和python程序):输入三个数,输出其最大者。

#python 3.6
#蔡军生
#http://blog.csdn.net/caimouse/article/details/51749579
#

x,y,z = 8,9,5
if x <= y:
if z < y:
print("最大数:", y)
else:
print("最大数:", z)
else:
if z < x:
print("最大数:", x)
else:
print("最大数:", z)
输出如下:

最大数: 9

跟老菜鸟学python
http://edu.csdn.net/course/detail/2592

TensorFlow API攻略
http://edu.csdn.net/course/detail/4495
TensorFlow入门基本教程
http://edu.csdn.net/course/detail/4369