Answers for "pandas how to out a json"

5

pandas to json

>>> df.to_json(orient='records')
'[{"col 1":"a","col 2":"b"},{"col 1":"c","col 2":"d"}]'
Posted by: Guest on February-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language