Day 2 - Understanding Data Types
and How to Manipulate Strings
Python Primitive Data Types
Python has four basic primitive data types.
. Integers: These are whole numbers
Example: 1 5 -10 etc
. Strings: These are used for texts enclosed in Quotes
Example:
name = "Muniba"
. Floating Point Numbers (Floats): These...
muniba.dev5 min read