DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

PYTHON Reference: Loops

Quick reference for Loops.

Read time: 1 min Words: 14
Open Playground → PYTHON My Progress

PYTHON Reference — Loops

Quick summary of Loops with syntax and example.

Syntax

for x in items:

Example

nums = [1,2,3,4]
even = [n for n in nums if n % 2 == 0]
print(even)