python學習筆記-----字典生成式

字典生成式 d = dict(a=1,b=2) print("小寫的字典:", d) # 1. 需求1: 將全部的key值變爲大寫; # 1-1. 傳統方法: new_d = {} for i in d: # 'a' 'b' new_d[i.upper()] = d[i] print("key轉化爲大寫的字典:", new_d) # 1-2. 升級 print({k.uppe
相關文章
相關標籤/搜索