Answers for "get only key in dict python"

7

first position dict python

my_dict = {'foo': 'bar', 'spam': 'eggs'}
next(iter(my_dict)) # outputs 'foo'

# or

my_dict = {'foo': 'bar', 'spam': 'eggs'}
list(my_dict.keys())[0] # outputs 'foo'
Posted by: Guest on May-06-2020
0

dict ;get a key of a value

myDict={"name":"PythonForBeginners","acronym":"PFB"}
print("Dictionary is:")
print(myDict)
dict_items=myDict.items()
print("Given value is:")
myValue="PFB"
print(myValue)
print("Associated Key is:")
for key,value in dict_items:
    if value==myValue:
        print(key)
Posted by: Guest on October-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language