test01.py 101 B

123456
  1. import json
  2. text = '''{"asda": 666, "abb": 656, "gsd": 123}'''
  3. data = json.loads(text)
  4. print(data)