输入四个整数,从小到大排序
时间: 2023-06-01 11:03:29 浏览: 91
C语言实验-输入4个整数,要求按由小到大(或由大到小)顺序输出。
5星 · 资源好评率100%
可以使用列表的sort方法,也可以使用Python内置的sorted函数。
方法一:使用列表的sort方法
```python
nums = input("请输入四个整数,用空格隔开:").split()
nums = [int(num) for num in nums] # 将输入的字符串转换为整数
nums.sort() # 使用列表的sort方法进行排序
print(nums)
```
方法二:使用Python内置的sorted函数
```python
nums = input("请输入四个整数,用空格隔开:").split()
nums = [int(num) for num in nums] # 将输入的字符串转换为整数
nums = sorted(nums) # 使用Python内置的sorted函数进行排序
print(nums)
```
以上两种方法都可以实现输入四个整数,从小到大排序的功能。
阅读全文