64.
What happens if the file is not found in the following Python code?
a=False
while not a:
    try:
        f_n = input("Enter file name")
        i_f = open(f_n, 'r')
    except:
        print("Input file not found")

65.
Which of the following is true about the finally clause in exception handling?