更新時(shí)間:2021年12月21日16時(shí)02分 來(lái)源:傳智教育 瀏覽次數(shù):
scores_dict = {'語(yǔ)文': 105, '數(shù)學(xué)': 140, '英語(yǔ)': 120} for key in scores_dict: print(key)
scores_dict = {'語(yǔ)文': 105, '數(shù)學(xué)': 140, '英語(yǔ)': 120} for value in scores_dict.values(): print(value)
scores_dict = {'語(yǔ)文': 105, '數(shù)學(xué)': 140, '英語(yǔ)': 120} for key in scores_dict: print(key + ":" + str(scores_dict[key])) # 返回字符串
scores_dict = {'語(yǔ)文': 105, '數(shù)學(xué)': 140, '英語(yǔ)': 120} for i in scores_dict.items(): print(i) # 返回元組
scores_dict = {'語(yǔ)文': 105, '數(shù)學(xué)': 140, '英語(yǔ)': 120} for key, value in scores_dict.items(): print(key + ':' + str(value))
加QQ:435946716獲取上面視頻的全套資料【視頻+筆記+源碼】
猜你喜歡:
python字典如何使用?有哪些應(yīng)用場(chǎng)景
Python中的字典是什么?怎么通過(guò)字典查詢信息?
北京校區(qū)