How to use single statement suite with Loops in Python?


Similar to the if statement syntax, if your while clause consists only of a single statement, it may be placed on the same line as the while header. Here are the syntax and example of a one-line for loop:

for i in range(5): print(i)

This will give the output:

0
1
2
3
4

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 17-Jun-2020

212 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements