Answer to Question #262915 in Python for Raju Mali

Question #262915

1)   Write a Python program that prints all the numbers from 11 to 20 except 13 and 17 using For loop.



1
Expert's answer
2021-11-09T04:29:48-0500
for x in range(11, 20):




  if (x == 13 or x==17):




    continue




  print(x,end=' ')




 




print("\n")

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS