[英]Tuple into Dictionary in Python [duplicate]
>>> seq = [(1, 2), (3, 4), (5, 6)]
>>> dict(seq)
{1: 2, 3: 4, 5: 6}
不是python很好:)
如Python Docs中所定义:
The dict() constructor builds dictionaries directly from lists of key-value pairs stored as tuples.
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.