Data Types
Every value belongs to a specific data type in Python. Data type identifies the type of data values a
variable can hold and the operations that can be performed on that data.
Number:- As you can understand from name Numbers are used to store numbers .
Interger :- Int is use to store any integer value
example :- a=10,a=-564 , a=0
Boolean:- Boolean can store only 0,1
float:- real or floating point number can be store in float
Example :- a=2.4,b=-4.834
Complex :- Complex can store complex numbers
Example:- 1+2a,3+9i
Sequence :- As we can understand it use to store sequence data such as string , list , tuple.
String :- Name="Sumit"
List:- li=[1,2,3,4]
tuple:- (1,2,3,4,5)
None:- None in python means nothing not even 0 .
a=None
Mapping :- Mapping means in Python holds data items in key-value pairs. there is only one standard mapping data type in Python called dictionary.
color={1:'Yellow',2:'Red',3:'Blue'}