错误:TypeError: 'dict_keys' object does not support indexing
python3改变了dict.keys,返回的是dict_keys对象,支持iterable 但不支持indexable,我们可以将其明确的转化成list:
错误:TypeError: 'dict_keys' object does not support indexing
python3改变了dict.keys,返回的是dict_keys对象,支持iterable 但不支持indexable,我们可以将其明确的转化成list:
相关文章: