How can I get dictionary key as variable directly in Python (not by searching from value)?

前端 未结 14 1758
面向向阳花
面向向阳花 2020-12-04 06:19

Sorry for this basic question but my searches on this are not turning up anything other than how to get a dictionary\'s key based on its value which I would prefer not to us

14条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-04 07:06

    if you just need to get a key-value from a simple dictionary like e.g:

    os_type = {'ubuntu': '20.04'}
    

    use popitem() method:

    os, version = os_type.popitem()
    print(os) # 'ubuntu'
    print(version) # '20.04'
    

提交回复
热议问题