Syntax error How to use single statement suite with Loops in 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
Updated on: 2020-06-17T12:29:42+05:30

397 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements