Get key by value in python dictionary | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Get key by value in python dictionary

german_english = {"easy": "einfach", "big": "groß", "soft": "weich"} Print(german_english["easy"]) My output will be "einfach" that is the value of the key "easy", but now I want to get the key as an output by inserting the value. For example, I want the output "easy", if I want to input the value "einfach". How to do it?

25th Jan 2018, 9:52 AM
Abdul Basit
Abdul Basit - avatar
1 Answer