Basic Data Types
Numerics
Python has two basic data structures for numeric values, called int and float. int is used to store integer values while float stores rational values. There is no need to declare the size of an instance of either data type, since Python has no inherent bound on the memory an int or float object can have. This is set by