我有一个config.json文件,config.json中的数据是“”
{
"mortalityfile":"C:/Users/DELL/mortality.csv"
}
死亡率文件是一个包含一些数据的csv文件。我想从cofig.json中提取csv文件数据。我编写的代码是
js = open('config.json').read()
results = []
for line in js:
words = line.split(',')
results.append((words[0:]))
print(results)
我得到的输出是我给出的源文件名。
[['{'], ['\n'], [' '], [' '], [' '], [' '], ['"'], ['m'], ['o'], ['r'], ['t'], ['a'], ['l'], ['i'], ['t'], ['y'], ['f'], ['i'], ['l'], ['e'], ['"'], [':'], ['"'], ['C'], [':'], ['/'], ['U'], ['s'], ['e'], ['r'], ['s'], ['/'], ['D'], ['E'], ['L'], ['L'], ['/'], ['m'], ['o'], ['r'], ['t'], ['a'], ['l'], ['i'], ['t'], ['y'], ['.'], ['c'], ['s'], ['v'], ['"'], ['\n'], [' '], [' '], [' '], [' '], ['\n'], ['}']]
我想通过python中的config.json提取存储在csv文件中的数据
1条答案
按热度按时间c86crjj01#
我认为您在阅读.csv文件和阅读.json文件时混淆了。