创建文件hello.txt,写入内容“hello,world”,向文件“hello.txt”中追加从0到9的随机整数, 10个数字一行,共10行整数。
时间: 2024-05-08 20:19:47 浏览: 91
随机生成一个10以内的整数
好的,您可以在命令行或代码中执行以下操作:
1. 创建名为 hello.txt 的文件并将字符串“hello, world”写入该文件中。
2. 在文件“hello.txt”中追加 0 到 9 的随机整数,共计 10 行,每行 10 个数字。
以下是 Python 代码实现:
```python
import random
# 创建并写入 hello.txt 文件
with open('hello.txt', 'w') as f:
f.write('hello, world\n')
# 打开 hello.txt 文件,并在末尾追加随机整数
with open('hello.txt', 'a') as f:
for i in range(10):
# 生成 0 到 9 的随机整数,并连接成字符串
nums = ''.join(str(random.randint(0, 9)) for j in range(10))
# 将字符串 nums 写入文件中,并在末尾添加换行符
f.write(f'{nums}\n')
```
执行完毕后,您可以在当前目录下找到名为 hello.txt 的文件,并查看其中的内容。
阅读全文