The output of the code will be as follows:
0123456789
What is the output of the following code?
count = 0
while count < 10:
print(count, end="")
count += 1
1 answer
count = 0
while count < 10:
print(count, end="")
count += 1
1 answer