Report Bug
Qus :

What will be the output after the following statements?

a = 0
b = 3
while a + b < 8:
       a += 1
       print(a, end='')

Qus

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

a = 0
b = 3
while a + b < 8:
       a += 1
       print(a, end='')


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


Solution
C. 1 2 3 4 5






Report Bug