Report Bug
Qus :

What will be the output after following statements?

x = 2
if x < 5:
     print(x)
else:
    pass

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

x = 2
if x < 5:
     print(x)
else:
    pass


A. 2 3 4
B. 1 2 3 4
C. 2
D. None of These


Solution
C. 2






Report Bug