Contact: aviboots(AT)netvision.net.il
39,009 questions
50,723 answers
573 users
dic = {"python": 1, "java": 2, "c": 3, "php": 4} e = dic.get("c++") if e is None: print("Not found") ''' run: Not found '''