Is it good practice to do something like:
try:
f1 = file('file1')
f2 = file('file2')
except:
# catch the exceptionOr do you do a try/except for each open? Robert -- http://mail.python.org/mailman/listinfo/python-list
Is it good practice to do something like:
try:
f1 = file('file1')
f2 = file('file2')
except:
# catch the exceptionOr do you do a try/except for each open? Robert -- http://mail.python.org/mailman/listinfo/python-list