python排序三个整数
时间: 2023-08-26 16:12:17 浏览: 92
可以使用Python内置函数sorted()对三个整数进行排序,然后将排序后的结果以列表的形式返回。示例代码如下:
```python
def sort_three_nums(a, b, c):
nums = [a, b, c]
sorted_nums = sorted(nums)
return sorted_nums
```
其中,a、b、c分别为三个整数,sort_three_nums()函数返回排序后的结果。例如,sort_three_nums(3, 1, 5)将返回[1, 3, 5]。
相关问题
python输入三个整数排序
可以使用以下代码实现:
a, b, c = map(int, input().split())
if a > b:
a, b = b, a
if b > c:
b, c = c, b
if a > b:
a, b = b, a
print(a, b, c)
Python输入三个整数按从大到小排序
可以使用以下代码实现:
a, b, c = map(int, input().split())
if a > b:
a, b = b, a
if b > c:
b, c = c, b
if a > b:
a, b = b, a
print(c, b, a)
阅读全文