adding keys in nested dictionary in python

前端 未结 3 1508
温柔的废话
温柔的废话 2021-01-23 02:04
elements = {\'hydrogen\': {\'number\': 1, \'weight\': 1.00794, \'symbol\': \'H\'}, 
            \'helium\': {\'number\': 2, \'weight\': 4.002602, \'symbol\': \'He\'}}
         


        
3条回答
  •  太阳男子
    2021-01-23 02:41

    You should access the dictionary and add is_noble_gas as a new key to the dictionary as follows.

    >>> elements['hydrogen']['is_noble_gas'] = False
    >>> elements['helium']['is_noble_gas'] = True
    

提交回复
热议问题