TypeError: 'dict_keys' object does not support indexing

TypeError: 'dict_keys' object does not support indexing

在python2中,dict.keys()得到一个列表,而在python3中,返回的是class ‘dict_keys’没有索引顺序,不能用index。想要得到列表就用list(dict.keys())转换一下。

    原文作者:Cracks_Yi
    原文地址: https://www.jianshu.com/p/fdcf44856f69
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞