Numpy教程#2:创建数组
#初学者 #教程 #python #datascience

要创建一个numpy数组,首先您必须将numpy库导入到代码

import numpy as np

然后,使用numpy array方法来创建numpy数组,然后以python列表作为参数

list_of_number = [1, 2, 3, 4, 5]

arr = np.array(list_of_number)

不仅可以将python列表作为array方法的参数,还可以通过python tuple

tuple_of_number = (1, 2, 3, 4, 5)

arr = np.array(tuple_of_number)

打印数组时,

print(arr)

您将看到以下输出

[1 2 3 4 5]

在那里,您创建了一个Numpy数组。感谢您阅读此博客,下次见!