Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个tempDataFrame 列表(称为 ),我想将每个 DataFrame 保存在一个唯一的 JSON 文件中,并将文件名称作为 DataFrame 列“符号”中的字符串值。
temp
我的做法是:
temp[i].to_json(temp[i][[temp[i]['symbol']] + '.txt') for i in temp.symbol.unique()
但我收到以下错误:
SyntaxError: invalid syntax
'symbol' 列中的字符串值是什么意思?第一行的值?如果是这样,解决方案是:
for df in temp: df.to_json(df.symbol.values[0] + '.txt')