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
12
Answer:
5 times
Explanation:
a,b,s,o,l are < t
u is > t so the loop exit
Similar questions
Math,
3 months ago
English,
3 months ago
Computer Science,
7 months ago
Math,
7 months ago
Biology,
1 year ago