Basic overview of some datatypes in python
The data types in python mostly used :
- Numerical data type
- Boolean data type
- String data type
#Learn about type() command .
Basics of Numerical data type:
All the mathematical calculations can be done for numerical data types,most commonly used numeric data types are int,float mostly.A brief glimpse of numeric data type and operations you can do on it

Basic string operations you can do
Basic string operations are indexing and slicing and the concept of indexing and slicing works not only for strings but also for other data structures like lists etc .

Before going for boolean data type let’s have a quick look at data type conversion

Boolean data types are :True and False
They are powerful when used with comparison operators can’t explain much in words because it is something you will get to know when you experiment with code

The link for the notebook https://drive.google.com/file/d/1yiOhRLG5icJAkJB7tcpM09uDKbKL2sR4/view?usp=sharing
Cheers
Happy learning ….