python 3.x 版本解决TypeError:‘dict-keys’ object does not support indexing的问题
python3改变了dict.keys,返回的是dict_keys对象,支持iterable 但不支持indexable,我们可以将其明确的转化成list。在python2中firstStr = myTree.keys()[0]在python3中firstStr = list(myTree.keys())[0]...