如何将字典键作为Python中的列表返回?
在……里面Python 2.7,我可以买字典钥匙, 价值,或项目作为一份清单:
>>> newdict = {1:0, 2:0, 3:0}>>> newdict.keys()[1, 2, 3]
现在,在Python>=3.3我得到了这样的东西:
>>> newdict.keys()dict_keys([1, 2, 3])
所以,我必须这样做才能得到一份清单:
newlist = list()for i in newdict.keys(): newlist.append(i)
我在想,有没有更好的方法Python 3?
蝴蝶刀刀
相关分类