编写一个Python程序,实现从键盘上输入3个整数并将这3个数由小到大输出。
作者:互联网
编写一个Python程序,实现从键盘上输入3个整数并将这3个数由小到大输出。
这是一个Python入门的简单程序,需要注意的是Python输入时默认的类型为str,需要转换为int类型进行操作。
a,b,c=map(int,input().split())
d=max(a,b,c)
e=min(a,b,c)
# print(e)
if a!=d and a!=e:
print(e,a,d)
elif b!=d and b!=e:
print(e,b,d)
elif c!=d and c!=e:
print(e,c,d)
实现本题的思路是通过调用Python中的数学库,巧妙的将最大值和最小值找出来,通过条件判断输出来实现程序。
标签:elif,Python,程序,由小到大,键盘,int,print 来源: https://blog.csdn.net/miichaelson/article/details/120879177