Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deal with JSON files in python

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how to deal with JSON files in python. The content of the article is of high quality, so the editor will share it for you as a reference. I hope you will have a certain understanding of the relevant knowledge after reading this article.

1. Environment

Python3.8

Pycharm 2020.1

two。 Read JSON data

Of course, the first step is to import the json module.

Import json

Read json data

Data ='{"a": 123, "b": "lala"} 'result = json.loads (data) print (result) print (result [' a'])

Interactive interface

3. Write out JSON data

Import module

Import json

Output json data and convert python dictionary to json data

Data = {'a 'axia1234'} result = json.dumps (data) print (result) insert a picture description example here to capture the data of China Seismological Network and parse the JSON data packet.

Complete source code

Import jsonimport requests

Res = requests.get ('http://news.ceic.ac.cn/ajax/google')text = res.text.encode (' utf-8') result = json.loads (text))

Print ('%-20s'% id','%-20s'% place','%-20s'% magnitude','%-20s'% longitude','%-20s'% latitude','%-20s'% depth','%-20s'% time') for e in result: print ('%-20s'% str (e ['id']) '%-20s'% str (e [' LOCATION_C']),'%-20s'% str (e ['M']),'%-20s'% str (e ['EPI_LON']),'%-20s'% str (e ['EPI_LAT']),'%-20s'% str (e ['EPI_DEPTH']),'%-20s'% str (e ['EPI_DEPTH']])

Typesetting is a bit lousy, everyone forgive me.

On how to deal with JSON files in python to share here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report