可以使用Python的csv模塊來(lái)讀取csv數(shù)據(jù)并存入數(shù)組。以下是一個(gè)簡(jiǎn)單的示例:
import csv
data = []
with open('data.csv', newline='') as csvfile:
csvreader = csv.reader(csvfile)
for row in csvreader:
data.append(row)
print(data)
在這個(gè)示例中,我們首先導(dǎo)入csv模塊,然后創(chuàng)建一個(gè)空數(shù)組data。接著打開(kāi)csv文件,并使用csv.reader來(lái)讀取文件中的每一行數(shù)據(jù),并將每行數(shù)據(jù)存入數(shù)組data中。最后,打印出數(shù)組data中的數(shù)據(jù)。
請(qǐng)注意,這里假設(shè)csv文件中的每一行數(shù)據(jù)都是一維數(shù)組。如果csv文件中的數(shù)據(jù)有多列,每一列數(shù)據(jù)應(yīng)該被存放在一個(gè)數(shù)組中,然后將這些數(shù)組再存入data數(shù)組中。