Floating point number is real numbers with decimal point (.)or fractional part. It can be positive or negative. Example: 5678.90 -2.88 0.99 >>> z = -1.234 >>> type(z) <class ‘float’> Let’s do arithmetic: >>> x = 8+8.1 >>> print (x) 16.1 >>> print (type(x)) <class ‘float’> Some key notes: 1. numbers separated with underscore can…