#!/usr/bin/python3 # -*- coding: utf-8 -*- """ Collections of things (data structures) As you saw, python supports different numerical types int (signed integers), float (floating point real values), complex (complex numbers) Python has strings too, which are like containers for characters Python also has containers for other data types (potentially heterogeneous) List, Tuple, Set, Frozen Set Dictionary, ... """ # https://en.wikipedia.org/wiki/RTFM help(list) help(tuple) help(set) help(frozenset) help(dict)