What is the difference between 'except IOError as e:' and 'except

P

Peng Yu

I don't see any different between the following code in terms of
output. Are they exactly the same ('as' v.s. ',')?

try:
raise IOError('IOError')
except IOError as e:
print e

try:
raise IOError('IOError')
except IOError, e:
print e
 
S

Steven D'Aprano

I don't see any different between the following code in terms of output.
Are they exactly the same ('as' v.s. ',')?

try:
raise IOError('IOError')
except IOError as e:
print e

This is the preferred syntax. It is used in Python 2.6 and better. It is
a syntax error in Python 2.5 and older.

try:
raise IOError('IOError')
except IOError, e:
print e

This is the obsolete syntax, used in Python 2.5 and older.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,012
Latest member
RoxanneDzm

Latest Threads

Top