

InterviewSolution
Saved Bookmarks
1. |
examples of python loops |
Answer» *for i in range (0,30): print(i)Output01234567891011121314151617181920212223242526272829.30 will not be taken*for I in range (0,30,2) print(i)Output0246810121416182022242628 | |