SlideShare a Scribd company logo
PRESENTATION_PYTHON.pptx
PRESENTATION_PYTHON.pptx
PRESENTATION_PYTHON.pptx
PYTHON IS POPULAR
PYTHON IS A MULTIPURPOUSE
LANGUAGE
PRESENTATION_PYTHON.pptx
Applications
Lets Move on python Programming
Data Types
Mutable and Immutable Types
• Data objects of the above types are stored in a
computer's memory for processing. Some of these
values can be modified during processing, but
contents of others can't be altered once they are
created in the memory.
• Numbers, strings, and Tuples are immutable, which
means their contents can't be altered after creation.
• On the other hand, items in a List or Dictionary object
can be modified. It is possible to add, delete, insert,
and rearrange items in a list or dictionary. Hence, they
are mutable objects.
DATA TYPES Manipulations
LIST Tuple SET Dictionary
Add x.append()
x.insert()
NA x.update()
x.add()
X[key]=value
Delete x.remove()
x.pop()
NA x.pop() x.pop
https://www.tutorialsteacher.com/articles/how-to-count-occurences-of-list-items-in-python
CATEGORICAL DATA
Problem 2
Python Projects

More Related Content

PDF
Programming in Civil Engineering_UNIT 2_NOTES
PPTX
Phython presentation
PPTX
Introduction to Python Programming for beginners
PPTX
100% practical Basic Python for Data Science
PPTX
Introduction to Data Structure in python
PPTX
Understanding-Python-Data-Structures-A-Comprehensive-Guide.pptx
PPTX
fundamental of python --- vivek singh shekawat
PDF
LPR - Week 1
Programming in Civil Engineering_UNIT 2_NOTES
Phython presentation
Introduction to Python Programming for beginners
100% practical Basic Python for Data Science
Introduction to Data Structure in python
Understanding-Python-Data-Structures-A-Comprehensive-Guide.pptx
fundamental of python --- vivek singh shekawat
LPR - Week 1

Similar to PRESENTATION_PYTHON.pptx (20)

PPTX
Data analysis using python in Jupyter notebook.pptx
PPTX
presentation on data science with python
PDF
Data Structures.pdf
PPTX
1 cs xii_python_functions_introduction _types of func
PDF
Best Institute for Data Analyst Course in Noida
PPTX
Top Python Interview Questions and Answers for Success.pptx
PPTX
intro to python.pptx
PDF
Python for beginners
PPTX
introduction to python,datatypes,operators
PPTX
Python data structures (Lists and tuples) presentation
PPTX
SUBHANSHU PP T.pptx
PDF
Day 4 - Excel Automation and Data Manipulation
PPTX
Python programming
PDF
prakash ppt (2).pdf
PPTX
Python Open Session.pptx
PPTX
Data Science Using Python.pptx
PDF
Python Basics Understanding Variables.pdf
PDF
Python Basics Understanding Variables.pdf
PPTX
PYTHON ppt for 2 nd year students very useful
Data analysis using python in Jupyter notebook.pptx
presentation on data science with python
Data Structures.pdf
1 cs xii_python_functions_introduction _types of func
Best Institute for Data Analyst Course in Noida
Top Python Interview Questions and Answers for Success.pptx
intro to python.pptx
Python for beginners
introduction to python,datatypes,operators
Python data structures (Lists and tuples) presentation
SUBHANSHU PP T.pptx
Day 4 - Excel Automation and Data Manipulation
Python programming
prakash ppt (2).pdf
Python Open Session.pptx
Data Science Using Python.pptx
Python Basics Understanding Variables.pdf
Python Basics Understanding Variables.pdf
PYTHON ppt for 2 nd year students very useful

Recently uploaded (20)

PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PDF
IGGE1 Understanding the Self1234567891011
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
Empowerment Technology for Senior High School Guide
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PPTX
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
PDF
1_English_Language_Set_2.pdf probationary
PPTX
Unit 4 Computer Architecture Multicore Processor.pptx
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PDF
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
PPTX
History, Philosophy and sociology of education (1).pptx
Share_Module_2_Power_conflict_and_negotiation.pptx
Computing-Curriculum for Schools in Ghana
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
IGGE1 Understanding the Self1234567891011
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
Empowerment Technology for Senior High School Guide
Practical Manual AGRO-233 Principles and Practices of Natural Farming
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
TNA_Presentation-1-Final(SAVE)) (1).pptx
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
AI-driven educational solutions for real-life interventions in the Philippine...
What if we spent less time fighting change, and more time building what’s rig...
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
1_English_Language_Set_2.pdf probationary
Unit 4 Computer Architecture Multicore Processor.pptx
B.Sc. DS Unit 2 Software Engineering.pptx
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
History, Philosophy and sociology of education (1).pptx

PRESENTATION_PYTHON.pptx

  • 5. PYTHON IS A MULTIPURPOUSE LANGUAGE
  • 8. Lets Move on python Programming
  • 10. Mutable and Immutable Types • Data objects of the above types are stored in a computer's memory for processing. Some of these values can be modified during processing, but contents of others can't be altered once they are created in the memory. • Numbers, strings, and Tuples are immutable, which means their contents can't be altered after creation. • On the other hand, items in a List or Dictionary object can be modified. It is possible to add, delete, insert, and rearrange items in a list or dictionary. Hence, they are mutable objects.
  • 11. DATA TYPES Manipulations LIST Tuple SET Dictionary Add x.append() x.insert() NA x.update() x.add() X[key]=value Delete x.remove() x.pop() NA x.pop() x.pop https://www.tutorialsteacher.com/articles/how-to-count-occurences-of-list-items-in-python