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

PYTHON Reference: Lists

Quick reference for Lists.

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

PYTHON Reference — Lists

Quick summary of Lists 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)