摘要: Python的字典的items(), keys(), values()都返回一个list dict = { 1 : 2, 'a' : 'b', 'hello' : 'world' } dict.values() ['b', 2, 'world'] dict.keys() ['a', 1, 'hell 阅读全文
posted @ 2016-02-16 15:08 xiaojiayu 阅读(518) 评论(0) 推荐(0)