Computer Science, asked by anusharamesh, 7 months ago

Write the output of the following code. How many times will the following loop

iterate?

for j in “absolute”:

if j>=’t’:

break

print(j, end=’ ’)

Answers

Answered by regha
12

Answer:

5 times

Explanation:

a,b,s,o,l are < t

u is > t so the loop exit

Similar questions