Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Json Python ( python class part 27 in Hindi )

JSON Python

JSON data interchange format है, इसका उपयोग डेटा को exchange करने के लिए उपयोग होता है।

Python में None, list, tuple, dict, string, int, float, True, False को json string में convert किया जा सकता है।

Python में को उपयोग करने के लिए json module को import करना होता है सोर्स फाइल में।

import json

Convert data into JSON

json की dumps() function का उपयोग कर json string में डेटा को convert किया जा सकता है।

import json

# Python dictionary:
employee = {
  "name": "Ram",
  "age": 28,
  "city": "Mumbai"
}

jsn_str = json.dumps(employee) # convert into JSON:

print(jsn_str) #  outputs JSON string

Convert JSON into object

import json
employee =  '{ "name":"Ram", "age":33}' # JSON object

y = json.loads(employee) # parse employee

print(employee["age"]) # outputs Python dictionary

Tutorial ke liye comments me zaroor bataye...


Go to next class part 👉 27


एक टिप्पणी भेजें

0 टिप्पणियाँ