Computer >> Computer tutorials >  >> Programming >> Python

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