Q&A Discussions
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 AnswersImage Source Slash
1 Vote
3 AnswersThe output code is stuck!
0 Votes
1 Answerhow can i put a program in an application ? i wrote a program with eclipse ( a calculator ) what can i do with it now ? maybe put it in an application but how ?
and is in this app (sololearn) declared how to program interactive fields ? like for calculator a field for + - * / and = ? is there any tutorial for that ?
2 Votes
5 AnswersHot today
Safety Deposit Boxes
2 Votes
__str__ in Python...
0 Votes
Input sand outputs
0 Votes
Sololearn
1 Votes
Advice me
1 Votes
Start
1 Votes
how to use ardino uno???
0 Votes