Discussions Q&R
If except can handle common errors very well, doesn't that make the use of raise redundant inside of a try-except block?
For example:
try:
print( 5 / 0 )
except ZeroDivisionError:
raise ValueError("An error occurred!")
What's the difference if we handle it this way:
try:
print( 5 / 0 )
except (ZeroDivisionError, ValueError):
print("An error occurred!")
3 Votes
2 RéponsesAujourd'hui en vedette
Can you help me ?
1 Votes
I can't see my activity
0 Votes
Hearts refill
1 Votes
Can anyone help me?
0 Votes
Does skipping void Certificate?
1 Votes
Random freelancer question
0 Votes