Python 练习实例5
题目:输入三个整数x,y,z,请把这三个数由小到大输出。
程序分析:我们想办法把最小的数放到x上,先将x与y进行比较,如果x>y则将x与y的值进行交换,然后再用x与z进行比较,如果x>z则将x与z的值进行交换,这样能使x最小。
程序源代码:
实例(Python 2.0+)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
l = []
for i in range(3):
x = int(raw_input('integer:\n'))
l.append(x)
l.sort()
print l
实例(Python 3.0+)
#!/usr/bin/python3
l = []
for i in range(3):
x = int(input('integer:\n'))
l.append(x)
l.sort()
print (l)
以上实例输出结果为:
integer: 8 integer: 5 integer: 6 [5, 6, 8]
somejune
502***[email protected]
其他参考解法:
输出结果:
somejune
502***[email protected]
lv二呆
may***[email protected]
参考解法:
lv二呆
may***[email protected]
流年细雨
758***[email protected]
参考解法:
流年细雨
758***[email protected]
Alen
554***[email protected]
Python3.x 版本下使用利用冒泡排序方法:
Alen
554***[email protected]
Atom
tum***@126.com
使用 列表 sort=,可接受参数 reverse,默认为布尔值 false,按升序排序,设置为 true 则按降序排序
Atom
tum***@126.com
初学者
646***[email protected]
参考方法:
初学者
646***[email protected]
storm
450***[email protected]
对输入类型进行了控制,如果输入错误,就提示用户,让用户再次输入,直到正确输入整数为止。
storm
450***[email protected]
xiaomeme
xia***[email protected]
参考方法:
xiaomeme
xia***[email protected]
晴宇
lia***[email protected]
参考方法:
晴宇
lia***[email protected]
OMG_d
243***[email protected]
参考方法:
OMG_d
243***[email protected]
墨雨
lzn***@163.com
下例更简单,Python2.x 与 Python3.x 均可使用:
下例更通用:
墨雨
lzn***@163.com
Sa
hap***[email protected]
python3
Sa
hap***[email protected]
yosning520
135***[email protected]
冒泡算法:
列表sort:
yosning520
135***[email protected]