निम्नलिखित कथनों के बाद आउटपुट क्या होगा?
What will be the output after the following statements?
a = 0
b = 3
while a + b < 8:
a += 1
print(a, end='')
A)
B)
C)
D)
Explanation: