编程语言
首页 > 编程语言> > 来自Python中的dict的元组列表

来自Python中的dict的元组列表

作者:互联网

参见英文答案 > How can I convert a dictionary into a list of tuples?                                    10个
如何从Python中的dict获取键值元组列表?

解决方法:

仅适用于Python 2.x(感谢Alex):

yourdict = {}
# ...
items = yourdict.items()

有关详情,请参见http://docs.python.org/library/stdtypes.html#dict.items.

仅适用于Python 3.x(取自Alex’s answer):

yourdict = {}
# ...
items = list(yourdict.items())

标签:python,list,dictionary,key-value
来源: https://codeday.me/bug/20191007/1866137.html