When we ask for datatype in numpy then it float64 or int64 , what does 64 means here?

int64 is shown if we see any otherdatatype it is shown in numpy only why?
can you tell?

Hello @coding123c ,
NumPy supports a much greater variety of numerical types than Python does.
int32-: The range of integers lies between Integer (-2147483648 to 2147483647)
int64-: The range of integers lies between (-9223372036854775808 to 9223372036854775807)
float64-: Double precision float: sign bit, 11 bits exponent, 52 bits mantissa.
The 64 refers to the memory allocated to store data in each cell which effectively relates to how many digits it can store in each “cell”.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.