在Python中编写程序,读取一个存储若干数字的文件,对其中的数字排序后输出
时间: 2023-03-29 07:01:23 浏览: 726
读取文件数字并排序最后输出另一个文件
5星 · 资源好评率100%
您好,这个问题可以使用Python内置的sorted函数来实现。具体步骤如下:
1. 打开文件,读取其中的数字并存储到一个列表中。
2. 使用sorted函数对列表进行排序。
3. 将排序后的结果输出到文件或控制台。
示例代码如下:
```
with open('numbers.txt', 'r') as f:
numbers = [int(line.strip()) for line in f]
sorted_numbers = sorted(numbers)
for num in sorted_numbers:
print(num)
```
其中,'numbers.txt'是存储数字的文件名,可以根据实际情况进行修改。
阅读全文