Q&A Discussões
finding lcm in python
2 Votos
6 RespostasWhat is meaning of CLR
3 Votos
3 RespostasThe Nuance of Coding
4 Votos
3 RespostasCan i write a function outside an object and associate it with multiple different objects sharing some common property upon which the function operates (turning it to a method for all these objects)? If not , whats the use of defining a method outside the object and assigning it to an object property?
4 Votos
4 RespostasIf 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 Votos
2 RespostasQuente hoje
How
5 Votes
Most asked 3.0
0 Votes
Print("hello ,world!"[7:13][2])
0 Votes
is python better than JS
0 Votes
Python Module in Sololearn
2 Votes