SlideShare a Scribd company logo
9
Most read
11
Most read
13
Most read
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Are Collections In Python?
What Is A Collections Module In Python?
www.edureka.co/python
Specialised Collections Data Types
www.edureka.co/python
www.edureka.co/python
There are four collection
data types in python
which are used to store
collections of data.
LISTS
TUPLES
SETS
DICTIONARY
What Is A Collections Module In Python?
www.edureka.co/python
What Is A
Collection
Module In
Python?
www.edureka.co/python
COLLECTIONS
Specialised Collection
data structures
www.edureka.co/python
Specialised
Collections
Data Types
www.edureka.co/python
defaultdict
namedtuple()
UserString
UserDict
Chainmap
UserList
OrderedDict
Counter
deque
namedtuple()
www.edureka.co/python
namedtuple() returns a tuple with a named value for each element in
the tuple.
Details = (name= ‘edureka’ , course=‘python’ , course2= ‘data science’)
deque
www.edureka.co/python
deque pronounced as ‘deck’ is an optimised list to
perform insertion and deletion easily.
Deque( [ ‘e’ , ’d’ , ’u’ , ’r’ ,’e’ , ’k’ , ’a’ ] )
Chainmap
www.edureka.co/python
Chainmap is a dictionary like class for creating a single
view of multiple mappings.
A = { 1: ‘edureka’ , 2: ‘python’}
B = { 3: ‘data science’ , 4: ‘AI’}
[ {1: ‘edureka’ , 2: ‘python’} , {3: ‘data science’, 4: ‘AI’} ]
Counter
www.edureka.co/python
Counter is a dictionary subclass for counting hashable
objects..
A = [1,2,1,2,1,2,3,4,5,6,7,2,1,2]
Count = Counter(a)
Counter( {1:4 , 2:5 , 3:1 , 4:1 , 5:1 , 6:1, 7:1})
OrderedDict
www.edureka.co/python
OrderedDict is dictionary subclass which remembers the
order in which the entries were done.
od = collections.OrderedDict()
od[‘a’] = 2
od[’b’] = 1
od[‘c’] = 3
Print(od)
OrderedDIct( { [ (a ,2) , (b, 1 ), (c ,3 ) ] )
defaultdict
www.edureka.co/python
defaultdict is a dictionary subclass which calls a factory
function to supply missing values.
D = defaultdict(int)
D[‘edureka’] = 1
D[‘python’] = 2
Print(D[‘java’]
Output : 0
UserDict,
UserList,
UserString
www.edureka.co/python
UserDict is a wrapper around dictionary objects for
easier dictionary sub-classing.
UserList is a wrapper around list objects for easier List
sub-classing.
UserString is a wrapper around string objects for easier
string sub-classing.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
www.edureka.co
www.edureka.co/python

More Related Content

What's hot (20)

PDF
Python programming : Files
Emertxe Information Technologies Pvt Ltd
 
PDF
Variables & Data Types In Python | Edureka
Edureka!
 
PPTX
Database connectivity in python
baabtra.com - No. 1 supplier of quality freshers
 
PPTX
Object Oriented Programming in Python
Sujith Kumar
 
PPTX
Chapter 03 python libraries
Praveen M Jigajinni
 
PPT
Python GUI Programming
RTS Tech
 
PPT
Python ppt
Mohita Pandey
 
PPSX
Modules and packages in python
TMARAGATHAM
 
PDF
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Edureka!
 
PPTX
Sorting in python
Simplilearn
 
PPTX
Python Data Structures and Algorithms.pptx
ShreyasLawand
 
PPTX
Introduction to the basics of Python programming (part 1)
Pedro Rodrigues
 
PPTX
MatplotLib.pptx
Paras Intotech
 
PPTX
Introduction to python
Ayshwarya Baburam
 
PPTX
Object oriented programming in python
baabtra.com - No. 1 supplier of quality freshers
 
PDF
Tkinter Python Tutorial | Python GUI Programming Using Tkinter Tutorial | Pyt...
Edureka!
 
PPTX
Data Analysis in Python-NumPy
Devashish Kumar
 
PDF
Python Basics | Python Tutorial | Edureka
Edureka!
 
Python programming : Files
Emertxe Information Technologies Pvt Ltd
 
Variables & Data Types In Python | Edureka
Edureka!
 
Database connectivity in python
baabtra.com - No. 1 supplier of quality freshers
 
Object Oriented Programming in Python
Sujith Kumar
 
Chapter 03 python libraries
Praveen M Jigajinni
 
Python GUI Programming
RTS Tech
 
Python ppt
Mohita Pandey
 
Modules and packages in python
TMARAGATHAM
 
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Edureka!
 
Sorting in python
Simplilearn
 
Python Data Structures and Algorithms.pptx
ShreyasLawand
 
Introduction to the basics of Python programming (part 1)
Pedro Rodrigues
 
MatplotLib.pptx
Paras Intotech
 
Introduction to python
Ayshwarya Baburam
 
Object oriented programming in python
baabtra.com - No. 1 supplier of quality freshers
 
Tkinter Python Tutorial | Python GUI Programming Using Tkinter Tutorial | Pyt...
Edureka!
 
Data Analysis in Python-NumPy
Devashish Kumar
 
Python Basics | Python Tutorial | Edureka
Edureka!
 

Similar to Python Collections Tutorial | Edureka (20)

PDF
Collections in Python - Where Data Finds Its Perfect Home.pdf
SudhanshiBakre1
 
PPTX
Python Collections - List, Tuple and Set.
Deeksha Verma
 
ODP
The beauty of_python_collections
Tsitsi Flora Munikwa
 
PPTX
Python Collections Module
MaryamAnwar10
 
PPTX
Python data type
nuripatidar
 
PDF
LPR - Week 1
FaridRomadhana
 
PPTX
Python data type
Jaya Kumari
 
PPTX
datatypes and its types.pptxgfmnghmghmfgm
dibyashakti10
 
PPTX
UNIT-3 python and data structure alo.pptx
harikahhy
 
PPTX
Python
reshmaravichandran
 
PPTX
Datastrucure
Mohamed Essam
 
PDF
Mastering Python chapter3
Keunhyun Oh
 
PPTX
Data types in python lecture (2)
Ali ٍSattar
 
PPTX
Python Collections
sachingarg0
 
PPTX
datastrubsbwbwbbwcturesinpython-3-4.pptx
Farhana859326
 
PPTX
tupple.pptx
satyabratPanda2
 
PDF
13- Data and Its Types presentation kafss
AliKhokhar33
 
PPTX
Understanding-Python-Data-Structures-A-Comprehensive-Guide.pptx
riberim258
 
PDF
4. Data Handling computer shcience pdf s
TonyTech2
 
PPTX
PYTHON DATA TYPE in python using v .pptx
urvashipundir04
 
Collections in Python - Where Data Finds Its Perfect Home.pdf
SudhanshiBakre1
 
Python Collections - List, Tuple and Set.
Deeksha Verma
 
The beauty of_python_collections
Tsitsi Flora Munikwa
 
Python Collections Module
MaryamAnwar10
 
Python data type
nuripatidar
 
LPR - Week 1
FaridRomadhana
 
Python data type
Jaya Kumari
 
datatypes and its types.pptxgfmnghmghmfgm
dibyashakti10
 
UNIT-3 python and data structure alo.pptx
harikahhy
 
Datastrucure
Mohamed Essam
 
Mastering Python chapter3
Keunhyun Oh
 
Data types in python lecture (2)
Ali ٍSattar
 
Python Collections
sachingarg0
 
datastrubsbwbwbbwcturesinpython-3-4.pptx
Farhana859326
 
tupple.pptx
satyabratPanda2
 
13- Data and Its Types presentation kafss
AliKhokhar33
 
Understanding-Python-Data-Structures-A-Comprehensive-Guide.pptx
riberim258
 
4. Data Handling computer shcience pdf s
TonyTech2
 
PYTHON DATA TYPE in python using v .pptx
urvashipundir04
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 

Python Collections Tutorial | Edureka