Python - Exception Handling Fundamentals
Identify the problem in this code snippet:
try:
file = open('data.txt')
except FileNotFoundError:
print('File missing')
finally:
file.close()