我有一个带有多个句子的json文件,每个句子用括号分隔。所有这些括号都在一行中。我需要为括号中的每个句子创建一个单独的文件。我怎么能在python中做到这一点?
答案 0 :(得分:0)
您可能希望为JSON的每个部分执行类似的操作:
for i in range(index+1, len(json)):
line = json[i]
file = open("jsonfile.txt","w")
if line.find("{") >= 0:
# write the sentences to a file
if line.find("}") >= 0:
break
else:
file.write(line)
希望这有助于您朝着正确的方向前进。