冷酷酒窝

文章
4
资源
0
加入时间
3年0月21天

python 关于json文件的操作:

import jsontest_dict = {'bigberg': [7600, {1: [['iPhone', 6300], ['Bike', 800], ['shirt', 300]]}]}print(test_dict)print(type(test_dict))json_str = json.dumps(test_dict) #translate dict to s...