【问题标题】:How can I put all keys of file that contain key value pairs in quotes using python code? [closed]如何使用 python 代码将包含键值对的文件的所有键放在引号中? [关闭]
【发布时间】:2023-04-04 17:23:02
【问题描述】:

我有一个文件包含以下形式的键值对:

[
  {
    af_NA: "Afrikaans (Namibia)",
    af_ZA: "Afrikaans (South Africa)",
    af: "Afrikaans",
    ak_GH: "Akan (Ghana)",
    ak: "Akan",
    sq_AL: "Albanian (Albania)",
    sq: "Albanian",
    am_ET: "Amharic (Ethiopia)",
    ...
  }
]

但键不在引号中。我想使用 python 代码将所有键放在引号中。
谢谢

【问题讨论】:

标签:
python
json
file