+ 6
can anyone pls explain how?
what is the output of the code? try: print(0**0, end="") except e: print(0, end="") finally: print(2, end="") output: 12 this is one of the challenge question. pls help me understand https://code.sololearn.com/cAKttlV3ztCR/?ref=app
5 odpowiedzi
+ 4
0**0 is 1
Finally block prints 2
Something power 0 is 1 always...
And you are displaying in same line by adding end=""
+ 5
Can you please provide it in a proper code format?
I ran it in code playground but it's showing error
+ 5
Recheque your question it's not complete question
+ 4
Lucifer🗡️ i have done it now
+ 4
Jayakrishna🇮🇳 thank u :) i understood