CODESTUDIO
What is the output of the following while loop?x = 1while x < 4: print(x) x += 1
6 months ago | [YT] | 0
CODESTUDIO
What is the output of the following while loop?
x = 1
while x < 4:
print(x)
x += 1
6 months ago | [YT] | 0