SarkariResultess QA Bank

JSON string को Python object में कैसे parse करते हैं? — interview में इसका सही जवाब क्या है?

Other 0 Views Verified
JSON string को Python object में कैसे parse करते हैं? — interview में इसका सही जवाब क्या है?
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified Correct Answer

json.loads(text)

json.loads(text)
Additional Explanation
json.loads JSON string को Python object में बदलता है।
Verified

json.decode(text)

json.decode(text)
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

JSON.loads(text)

JSON.loads(text)
Additional Explanation
यह विकल्प सही समाधान नहीं है।
Verified

json.parse(text)

json.parse(text)
Additional Explanation
यह विकल्प सही समाधान नहीं है।