1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > python学习之dict的items() values() keys()

python学习之dict的items() values() keys()

时间:2021-06-11 07:43:48

相关推荐

python学习之dict的items() values() keys()

Python的字典的items(), keys(), values()都返回一个list

1>>> dict = { 1 : 2, 'a' : 'b', 'hello' : 'world' } 2>>> dict.values() 3['b', 2, 'world'] 4>>> dict.keys() 5['a', 1, 'hello'] 6>>> dict.items() 7[('a', 'b'), (1, 2), ('hello', 'world')] 8>>>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。