将字符串值转换为嵌套JSON的最佳方法

发布于 2025-01-21 16:25:48 字数 448 浏览 0 评论 0原文

我有一个看起来像这样的字符串:

Standard,NonStandard=[Hybrid,Non-standard,Preferred],AnotherOne=[a, b, c]

正在研究通过Python将其转换为此词典 / JSON结构的方法。

[{
  'value': 'Standard',
},
{
  'value': 'NonStandard',
  'sub': [ 'Hybrid', 'Non-standard', 'Preferred' ]
},
{ 
  'value': 'AnotherOne',
  'sub': [ 'a', 'b', 'c']
}]

我认为我可以通过循环绕字符串进行操作,并跟踪= [和关闭],但是想知道是否有更多的“ Pythonic”解决方案。

I have a string that looks like this:

Standard,NonStandard=[Hybrid,Non-standard,Preferred],AnotherOne=[a, b, c]

and am looking into ways to convert it to this dictionary / json structure via Python.

[{
  'value': 'Standard',
},
{
  'value': 'NonStandard',
  'sub': [ 'Hybrid', 'Non-standard', 'Preferred' ]
},
{ 
  'value': 'AnotherOne',
  'sub': [ 'a', 'b', 'c']
}]

I think I can do this via looping over strings and keeping track of the =[ and closing ] but was wondering if there is a more "pythonic" solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文