python編程技巧之從字典中提取子集

首先咱們會想到使用字典推導式(dictionary comprehension)來解決這個問題,例如如下場景:web prices={'ACME':45.23,'APPLE':666,'IBM':343,'HPQ':33,'FB':10} #選出價格大於 200 的 gt200={key:value for key,value in prices.items() if value > 200} p
相關文章
相關標籤/搜索