0
import csv
with open("HORSES.csv") as f:
for row in csv.reader(f):
# Number of pages plus one
for horse in row:
print (horse)
with open("%s.txt" % horse, "w") as f:
f.close()
このコンテンツファイルhorses.csvwest、usa、asia、black。出力はOKですが、作成する.txtファイルのみblack.txtファイルの終わりhorses.csvファイルを作成しないpd csvファイル、リストファイルからファイル名を含む.txtファイルを作成する方法このwest.txtのようなhorses.csv usa.txt asia.txt black.txtpythonでファイルcsvからファイルtxtファイル名を作成する方法2.7
おかげで、あなたは完全な私のコードのために再び私を助けることができますか?私はいつもエラーが発生するので、beatifulsoupでスクリプトの上記コード部分 –