Which of the following blocks will be executed whether an exception is thrown or not?
Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
65
Questions
4/4
Page
Pick an option on a question to see the right answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
t[5]Select an option to see the answer and solution.
a=False
while not a:
try:
f_n = input("Enter file name")
i_f = open(f_n, 'r')
except:
print("Input file not found")Select an option to see the answer and solution.
Select an option to see the answer and solution.