print key of dictionary python
for key, value in mydic.items() :
print (key, value)
print key of dictionary python
for key, value in mydic.items() :
print (key, value)
printing python dictionary values
#print keys and values from the dictionary
for k, v in dic.items():
print(k, v)
how to get the key for a value in a dictionary in python
# function to return key for any value
def get_key(val):
for key, value in my_dict.items():
if val == value:
return key
return "key doesn't exist"
# Driver Code
my_dict ={"java":100, "python":112, "c":11}
print(get_key(100))
print(get_key(11))
python dict print keys
print(dictionary.items()) #prints keys and values
print(dictionary.keys()) #prints keys
print(dictionary.values()) #prints values
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us