Report Bug
Qus : What is the output of the following?
n=5
while n>0:
    n-=1
    if n==2:
        continue
    print(n,end=' ')

Qus

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

n=5
while n>0:
    n-=1
    if n==2:
        continue
    print(n,end=' ')


A. 5 4 3 1 0
B. 4 3 1 0
C. 4 3 2
D. none of these


Solution
B. 4 3 1 0






Report Bug