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...