Chemistry, asked by dangerwizard5773, 1 month ago

Python data type that is used to hold numeric values

Answers

Answered by Rajkd180203
1

Answer:

Python numeric data type is used to hold numeric values like;

int – holds signed integers of non-limited length.

long- holds long integers(exists in Python 2. x, deprecated in Python 3. x).

float- holds floating precision numbers and it's accurate upto 15 decimal places.

complex- holds complex numbers.

Similar questions