迭代字符串的各个部分
我的字符串形式是
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者,您可以将其转换为字典(去掉括号后):
然后迭代字典:
Alternatively, you could convert this into a dictionary (after stripping the brackets):
and then iterate over the dictionary: