dict in python

版权声明: https://blog.csdn.net/u011286584/article/details/82952245

定期整理点滴,完善自己,今后给洋哥挣钱,陪伴着让我的小宝贝发自内心爱上笑,加油吧

这里写图片描述

dict 的 items(),keys(),values() 方法返回一个 list
favorite_language = {
	'jen': 'python',
	'sarah': 'c',
	'edward': 'ruby',
	'phil': 'python',
}
print(favorite_language.items())
print(favorite_language.keys())
print(favorite_language.values())

控制台输出

dict_items([('jen', 'python'), ('sarah', 'c'), ('edward', 'ruby'), ('phil', 'python')])
dict_keys(['jen', 'sarah', 'edward', 'phil'])
dict_values(['python', 'c', 'ruby', 'python'])

2018.10.06 广州

猜你喜欢

转载自blog.csdn.net/u011286584/article/details/82952245
今日推荐