0
In line 7 indentation error is coming what is the mistake.
4 Answers
+ 2
i=1
while 1==1:
print(i)
i=i+1
if i<=10:
print("true")
break
print("end")
Give space like this.
+ 1
Yes break is to far right. It should be on the same line as print.
+ 1
Thanks u. I'll try it.
0
Ok thanks đ