Обсуждения
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 голосов
2 ответовАктуальное сегодня
Python for beginners
0 Votes
Help me😭😭😭😭😭
0 Votes
I'm new in js
0 Votes
dictionary
0 Votes
Python
0 Votes
What is html
1 Votes
Audio trouble
0 Votes
How its output is 2 but not 3
0 Votes