文件
本帖最后由 2830680393 于 2022-4-30 19:40 编辑有如下的表格,请问怎么把content列的内容保存为对应的filename(如file01)命名的文件,并将该文件放在一个已经存在的label文件夹(如class1)中。
filename content label
file01 asdjhsgdjh class1
file02 ashdgkjhcb class2
file03 skhakhscvjh class3
……… ……………… ………
……… ……………… ………
……… ……………… ………
……… ……………… ………
比如将上述表格中content列的内容”ashdgkjhcb“ ,保存在一个名叫“file02“的txt文件中,并将”file02.txt“放在一个名叫”class2“的文件夹中。 把一个文件放到另一个文件中,怎么放?用你自己的实例数据举个例子先。 jackz007 发表于 2022-4-30 19:32
把一个文件放到另一个文件中,怎么放?用你自己的实例数据举个例子先。
不好意思,先前描述的不清楚,是放到另一个文件夹中。我又把题目改了下,麻烦你再指点指点。 本帖最后由 jackz007 于 2022-4-30 20:08 编辑
2830680393 发表于 2022-4-30 19:43
不好意思,先前描述的不清楚,是放到另一个文件夹中。我又把题目改了下,麻烦你再指点指点。
import os
fp1 = open('sample.txt')
for x in fp1:
e = x . split()
if len(e) == 3:
p = os . path . join(e , e + '.txt')
with open(p , "wt") as fp2:
fp2 . write(e + '\n')
fp1 . close()
输入文件 "sample.txt"
file01 asdjhsgdjh class1
file02 ashdgkjhcb class2
file03 skhakhscvjh class3
代码目录内必须同时有名为 :
"class1"、"class2"、"class3" 的子目录。
页:
[1]