python 2.x
>>> d = {'one': 1, 'two': 2, 'three': 3} >>> d.keys() ['three', 'two', 'one'] >>> d.values() [3, 2, 1] >>> d.items() [('three', 3), ('two', 2), ('one', 1)]Python数据类型之“集合(Sets)与映射(Mapping)”(5)
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:https://www.heiqu.com/e45a64f9149f9f2fb357c2b6a014bf64.html