-1
的
考慮兩個字典:創建新的字典了兩個現有的字典
dict1 = {'a': 35, 'b': 39, 'c': 20} # (with the values as integers)
dict2 = {'a': 23, 'c': 12}
我想獲取以下信息:
dict_new = {'a': 0.657, 'c': 0.6} # (with the values as floats, as values of dict2/dict1)
那麼你嘗試過什麼,以及究竟是它的問題? 「b」和「dict2」中不在「dict1」中的按鍵有什麼關係? – jonrsharpe