+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

Related questions

0 votes
asked Feb 11, 2020 in Python by rahuljain1
0 votes
asked Jan 18, 2021 in Python by SakshiSharma
...