Searching for: Arrays in Python
Tuples
Language: Python

Tuples are used to store multiple items sequentially in one variable. Similar to lists, but immutable.

Lists
Language: Python

Lists are used to store multiple items sequentially in one variable. Equivalent of an array in other languages. Lists are mutable.

Sets
Language: Python

Used to store values like an array and ensure there are no duplicates.

For Loop
Language: Python

The for loop is used to iterate through a sequence. When a range is provided as the sequence, it behaves like a C-style for loop. For all other sequences (arrays, etc.), it behaves like a for each loop.


  Next Page >