Find the key from Map with K, V pair where V is greater than 100|Tiger Analytics Interview Question|

preview_player
Показать описание
Hello Geeks,

Please find the link to the course:

Please find out the solution here:
my_map = {
'a': 150,
'b': 75,
'c': 200,
'd': 50,
'e': 300
}

Python is one of the most demanded programming languages in the job market. Surprisingly, it is equally easy to learn and master Python. This python tutorial for absolute beginners in Hindi series will focus on teaching you python concepts from the ground up

#pythonforbeginners #pythoninterviewquestions
Рекомендации по теме
Комментарии
Автор

Hi Sagar!
Thanks for the content
My approach
final_dict={}
for i, j in my_dict.items():
if j>=100:
final_dict[i]=j
print(final_dict)

mohdtoufique