Python - Collection

Card Puncher Data Processing

Python - Collection

About

collection in Python:

Data Type:

Type Sequence
(Ordered)
Mutable Duplicate
Python - List Yes Yes Yes
Python - Tuple Yes No Yes
Python - Set No Yes No
Python - (Dictionary|Map) No Yes No

Iterable





Discover More
Card Puncher Data Processing
Python - List

Lists are used to store a collection of different pieces of information in a sequence order of under a single variable name. A list can be used to implement a . A list is mutable whereas a tuple is not....
Card Puncher Data Processing
Python - Zip (Collection)

A zip is a collection constructed from other collections all of the same length. Zip create pairs of elements when passed two lists, and will stop at the end of the shorter list. Each element of the...



Share this page:
Follow us:
Task Runner