Python’s Types of Data

Python has five standard types of data: Numbers Strings Lists Tuples Dictionary The number type data is used to store numerical values, this are created when you assign a value to the object. var1 = 5 var2= 15 Pythons support four different numerical types: int ( signed integers ) long ( long integers, they can…