Computer Science, asked by mxavierk45, 6 months ago

What is the output produced by the following code? What will it

produce if continue is replaced with break?

for x in range(1,11):

if x == 6:

continue

else:

print(x,end=” “)

else:

print(“Exiting for”)​

Answers

Answered by Anonymous
3

Answer:

the answer is print print else as continue range 111

Similar questions