Computer Science, asked by jillujose, 4 months ago

Debug the Following
2.i=1
while(i<=5):
if (1==3):
break:
else
print(i)
i=i+1​

Answers

Answered by tarungv2007
2

This program would always fail because you wrote if(1==3) . Thus you should write if(i==3)

Mark it the brainliest

Similar questions