编写一Python程序,在c:\chfile目录下创建文件source.txt,输入5行字符,文件内容任意(其中包含英文大小写字符,数字字符))
时间: 2024-03-22 08:39:46 浏览: 66
source.txt 文件
好的,以下是Python程序的代码:
```python
import os
path = "c:\\chfile"
if not os.path.exists(path):
os.makedirs(path)
filename = os.path.join(path, "source.txt")
with open(filename, "w") as f:
for i in range(5):
line = input(f"请输入第{i+1}行字符:")
f.write(line + "\n")
```
运行该程序后,会在C盘根目录下创建一个名为chfile的文件夹,并在该文件夹下创建一个名为source.txt的文件。程序会接受用户输入5行字符,并将其写入source.txt文件中。
阅读全文