Dyskusje Q&A
REDUNDANT
1 Głos
9 odpowiedzi3 hearts not enuf
4 głosów
2 odpowiedziIf 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 głosów
2 odpowiedzi