更改字典列表中的字典值

时间:2019-10-19 18:10:29

标签: json python-3.x list dictionary

{
  "__class": "Tape",
  "Clips": [
    {
      "__class": "MotionClip",
      "Id": 4280596098,
      "TrackId": 4094799440,
      "IsActive": 1,
      "StartTime": 180,
      "Duration": 48,
      "ClassifierPath": "world\/maps\/error\/timeline\/moves\/error_intro_walk.msm",
      "GoldMove": 0,
      "CoachId": 0,
      "MoveType": 0,
   {
      "__class": "MotionClip",
      "Id": 2393481294,
      "TrackId": 4094799440,
      "IsActive": 1,
      "StartTime": 372,
      "Duration": 48,
      "ClassifierPath": "world\/maps\/error\/timeline\/moves\/error_ve_opening.msm",
      "GoldMove": 0,
      "CoachId": 0,
      "MoveType": 0,
...

这是json文件的一个片段,我想在其中更改显示数字的方式。例如,我希望将1写入为00000001,将48写入为00000048,将0写入为00000000。因此,整个json文件中的所有数字都按照我之前所说的进行写入。它们可以写为字符串。 我不知道如何开始,因为我有字典清单。

1 个答案:

答案 0 :(得分:0)

假设您的数据实际上像这样-

main_dict = {
  "__class": "Tape",
  "Clips": [
    {
      "__class": "MotionClip",
      "Id": 4280596098,
      "TrackId": 4094799440,
      "IsActive": 1,
      "StartTime": 180,
      "Duration": 48,
      "ClassifierPath": "world\/maps\/error\/timeline\/moves\/error_intro_walk.msm",
      "GoldMove": 0,
      "CoachId": 0,
      "MoveType": 0,
   },
   {
      "__class": "MotionClip",
      "Id": 2393481294,
      "TrackId": 4094799440,
      "IsActive": 1,
      "StartTime": 372,
      "Duration": 48,
      "ClassifierPath": "world\/maps\/error\/timeline\/moves\/error_ve_opening.msm",
      "GoldMove": 0,
      "CoachId": 0,
      "MoveType": 0,
   }
  ]
}  

您可以执行以下操作-

#Accessing a specific key in a dict, in this case Clips (list of dicts)
list_dicts = main_dict.get('Clips')  

#Function to fix/edit specific values in the list of dict based on what key they belong to
def fix_value(k,v):

    if k=='Duration':
        return '00000'+str(v)

    #Add more elseif in between with various things you wanna handle 

    else:
        return v

#Iterating over each key, value in each dict in list of dicts and applying above function on the values

[{k:fix_value(k,v) for k,v in i.items()} for i in list_dicts] 

结果-

[{'__class': 'MotionClip',
  'Id': 4280596098,
  'TrackId': 4094799440,
  'IsActive': 1,
  'StartTime': 180,
  'Duration': '0000048',
  'ClassifierPath': 'world\\/maps\\/error\\/timeline\\/moves\\/error_intro_walk.msm',
  'GoldMove': 0,
  'CoachId': 0,
  'MoveType': 0},
 {'__class': 'MotionClip',
  'Id': 2393481294,
  'TrackId': 4094799440,
  'IsActive': 1,
  'StartTime': 372,
  'Duration': '0000048',
  'ClassifierPath': 'world\\/maps\\/error\\/timeline\\/moves\\/error_ve_opening.msm',
  'GoldMove': 0,
  'CoachId': 0,
  'MoveType': 0}]

相关问题