PYTHON IS POPULAR
PYTHON IS A MULTIPURPOUSE
LANGUAGE
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

PRESENTATION_PYTHON.pptx

  • 4.
  • 5.
    PYTHON IS AMULTIPURPOUSE LANGUAGE
  • 7.
  • 8.
    Lets Move onpython Programming
  • 9.
  • 10.
    Mutable and ImmutableTypes • 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 LISTTuple 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
  • 12.
  • 13.
  • 14.