已知“1.txt“文件中存放若干个用空格隔开的整数,请编写程序拂去所有数字,升序排序后输出。
时间: 2024-06-14 11:04:20 浏览: 138
无法读取项目文件 .csproj,请确认 Import 声明中的路径正确
4星 · 用户满意度95%
以下是根据提供的引用内容编写的程序,用于读取并排序文件中的整数:
```python
f = open('1.txt', 'r')
content = f.read().split()
numbers = [int(num) for num in content]
sorted_numbers = sorted(numbers)
for num in sorted_numbers:
print(num)
f.close()
```
阅读全文