[python]中 np.int64解释

Numpy的int64是一个64位整数,这意味着它由64个0或1的位置组成。因此,最小的表示值是-2 **63,最大的表示值是2 **63 - 1
Python的int本质上是无限长的,因此它可以表示任何值。它相当于Java中的BigInteger。它存储为int64的列表,本质上被认为是一个大数

a = 16
b = int(a)
print(type(b))
c = np.int64(a)
print(type(c))
<class 'int'>
<class 'numpy.int64'>

Process finished with exit code 0

你可能感兴趣的:(笔记,python函数,python,numpy,机器学习)