Python - Advanced Exception Handling
Consider this code:
def test():
try:
return 'try'
except:
return 'except'
finally:
return 'finally'
result = test()
print(result)
What will be printed?