Discussions Q&R
Exceptions and raises
0 Vote
1 RéponseIf 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éponsesdef manipulate_data(n):
positives,negatives=[],[]
if not isinstance(n,list):
raise ValueError
return
else:
for i in n:
if i>=0:
positives.append(i)
if i<0
negatives.append(i)
new=[len(positives,sum(negatives)]
return new.
Someone kindly assist I keep running it in unitests and I keep getting errors.
Here's the question:
0 Vote
2 RéponsesAujourd'hui en vedette
How to split char* into 5 parts
1 Votes
Help me with this code
0 Votes
Why this code still works
0 Votes
Python
0 Votes
Certificates
0 Votes
LOST DATA
1 Votes
Ai courses
1 Votes