Computer Science, asked by Shrikrishan3425, 8 months ago

Difference between int and float in python

Answers

Answered by pavithranatarajan855
1

Answer:

Python supports integers, floating-point numbers and complex numbers. They are defined as int , float , and complex classes in Python. Integers and floating points are separated by the presence or absence of a decimal point. For instance, 5 is an integer whereas 5.0 is a floating-point number.

Explanation:

Similar questions