Category "except"

it doesn't loop but just breaks even if i input Y

def interact(): while True: try: num = int(input("Please input an integer: ")) if (num % 2) == 0: print ("{

Safe method to get value of nested dictionary

I have a nested dictionary. Is there only one way to get values out safely? try: example_dict['key1']['key2'] except KeyError: pass Or maybe python h