Dyskusje Q&A
finding lcm in python
2 głosów
6 odpowiedziWhat is meaning of CLR
3 głosów
3 odpowiedziThe Nuance of Coding
4 głosów
3 odpowiedziCan 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 głosów
4 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 odpowiedziPopularne dzisiaj
I am new
1 Votes
Advertising in Sololearn
1 Votes
RUST'S FUTURE
1 Votes
Programming Language
0 Votes