Thanks to visit codestin.com
Credit goes to www.educative.io

Numbers

Let’s learn about the numeric data type in Python.

Python has two basic number types—integer and float. For example, 22 is an integer, while 2.32.3 is a floating-point number because it has a decimal attached to it.

Arithmetic operations

We can perform the ...