如何使用 lambda 函数将逗号分隔的键值对转换为字典
我在计算lambda 函数时遇到了一些问题。有人可以告诉我如何使用 lambda 函数将以下字符串拆分到字典中吗?
fname:John,lname:doe,mname:dunno,city:Florida
谢谢
I'm having a little problem figuring out lamba functions. Could someone show me how to split the following string into a dictionary using lambda functions?
fname:John,lname:doe,mname:dunno,city:Florida
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里实际上并不需要 lambda。
There is not really a need for a lambda here.
您不需要 lambda 函数来执行此操作:
但如果您确实想要,则可以:
You don't need lambda functions to do this:
But you can if you really want to:
如果你真的愿意,你甚至可以用两个 lambda 来做到这一点,但永远不要在工作中尝试这个!只是为了好玩:
If you really want you can even do this with two lambdas, but never try this at work! Just for fun: