Math, asked by amberallen800, 2 months ago

x=0
for i in range (23):
x-=1
x+=4
print (x)

Answers

Answered by jadayesukrupa
10

Answer:

11. 12. 13. 14. 15. # Prints out 0,1,2,3,4. count = 0. while True: print(count). count += 1. if count >= 5: break. # Prints out only odd numbers - 1,3,5,7,9. for x in range(10): # Check if x is even. if x % 2 == 0: continue. print(x).

liveexample-ppe.pearsoncmg.com › ...

Similar questions