用python 遍历创建名字为s1,s2,s3,...,s33 的文件夹,在文件夹中创建a.txt和b.txt文件,向a.txt文件第一行写入a,第二行写入b,第三行写入 c,向b.txt文件第一行写入a1,第二行写入b1,第三行写入c1
时间: 2024-04-14 15:26:57 浏览: 170
python遍历文件夹下文件,并生成txt
好的!以下是实现该功能的Python代码:
```python
import os
# 创建文件夹和文件的函数
def create_folders_and_files():
for i in range(1, 34):
folder_name = f's{i}'
os.makedirs(folder_name)
file_a = open(os.path.join(folder_name, 'a.txt'), 'w')
file_a.write('a\nb\nc')
file_a.close()
file_b = open(os.path.join(folder_name, 'b.txt'), 'w')
file_b.write('a1\nb1\nc1')
file_b.close()
# 调用函数创建文件夹和文件
create_folders_and_files()
```
运行以上代码,它将会在当前工作目录下创建名为 `s1` 到 `s33` 的文件夹,并在每个文件夹中创建 `a.txt` 和 `b.txt` 文件。`a.txt` 文件的内容为 `a\nb\nc`,`b.txt` 文件的内容为 `a1\nb1\nc1`。
希望这能帮到你!如果你有任何其他问题,请随时提问。
阅读全文