python编写程序,产生n个三位随机正整数,将他们存入文件num1.txt中,然后再把文件num1.txt中的数据读取到一个列表中,并排序后再存入文件num1.txt中。文件num1.txt中的原始数据和排序后的数据之间用‘===========================’隔开。
时间: 2023-08-06 07:08:25 浏览: 94
好的,以下是 Python 代码实现:
```python
import random
# 产生 n 个三位随机正整数
n = 10
nums = [str(random.randint(100, 999)) for _ in range(n)]
# 将数据存入文件 num1.txt 中
with open('num1.txt', 'w') as f:
f.write('\n'.join(nums))
# 读取文件中的数据并排序
with open('num1.txt', 'r') as f:
nums = f.read().splitlines()
nums_sorted = sorted(nums)
# 将排序后的数据存入文件 num1.txt 中,与原始数据之间用 ‘===========================’ 隔开
with open('num1.txt', 'w') as f:
f.write('\n'.join(nums_sorted))
f.write('\n===========================\n')
f.write('\n'.join(nums))
```
以上代码中,我们首先使用 `random` 模块产生 n 个三位随机正整数,并将它们存入文件 `num1.txt` 中。接着,我们使用 `open` 函数打开文件 `num1.txt` 并读取其中的数据,再使用 `sorted` 函数对数据进行排序。最后,我们再次打开文件 `num1.txt` 并将排序后的数据与原始数据之间用 `===========================` 隔开,最终将数据存入文件中。
阅读全文