0
Ehy its showing error in for loop?
for i==0: i=(1,2,3,4,5,6:10) if i>=5: print(i) break print("breaking") while i %2==0: print("even numbers are separated")
4 Antworten
+ 3
U mean this
for i in range(1,11):
if i >=5:
print(i)
break
print("breaking")
while i % 2== 0:
print("even numbers are separated")
+ 2
yes
+ 2
Sorry
The code for i in range(1,11):
if i >= 5:
print(i)
break
print("breaking")
while i % 2== 0:
print("even numbers are separated")
+ 1
Inbox bro