+1 vote
in Python by
What is the output of the following code in Python 3?

Select the best answer from below options :

if a:

print(""""a's value"""")

else:

print(""""Sorry nothing will get printed"""")

a)0

b)Error

c)a's value

d)Sorry nothing will get printed

1 Answer

0 votes
by
b)Error
...