摘要:
1. Python的字典的items(), keys(), values()都返回一个list>>> dict = { 1 : 2, 'a' : 'b', 'hello' : 'world' } >>> dict.values() ['b', 2, 'world'] >>> dict.keys... 阅读全文
posted @ 2015-06-29 16:41
复制乔布斯
阅读(308)
评论(0)
推荐(0)
2015年6月29日