迭代字符串的各个部分

发布于 2024-10-17 04:19:21 字数 128 浏览 1 评论 0原文

我的字符串形式是

[3339:1.6101369,1062:1.5,5751:1.5,6376:1.5,  ...  ]

我想要迭代逗号分隔的键值对。最好或最短的方法是什么?

I have string in the form

[3339:1.6101369,1062:1.5,5751:1.5,6376:1.5,  ...  ]

I want to iterate through the comma separated key-value pairs. What is the best or shortest way to do this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

霞映澄塘 2024-10-24 04:19:21
s = "[3339:1.6101369,1062:1.5,5751:1.5,6376:1.5]"
s = s.strip("[]")    # Drop the brackets
for kv in s.split(","):
    key, value = kv.split(":")
    print key, value

或者,您可以将其转换为字典(去掉括号后):

d = dict(kv.split(":") for kv in s.split(","))

然后迭代字典:

for key in d:
    print key, d[key]
s = "[3339:1.6101369,1062:1.5,5751:1.5,6376:1.5]"
s = s.strip("[]")    # Drop the brackets
for kv in s.split(","):
    key, value = kv.split(":")
    print key, value

Alternatively, you could convert this into a dictionary (after stripping the brackets):

d = dict(kv.split(":") for kv in s.split(","))

and then iterate over the dictionary:

for key in d:
    print key, d[key]
机场等船 2024-10-24 04:19:21
d = ast.literal_eval('{' + s[1:-1] + '}')
d = ast.literal_eval('{' + s[1:-1] + '}')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文