I'm not very well versed in exception handling, and was wondering what happens in a case where the try successfully calls a function, but then there is an error within said function.
try:
foo()
except:
...
def foo():
... # error happens here (no exception handling)
Is the error handled or will we get an error in this case.
fooand putting a print statement in the except clause)! You'll go farther faster if you don't rely on others to hand you answers that you can discover for yourself.