10 lines
141 B
Python
10 lines
141 B
Python
import pandas
|
|
|
|
def read(filename):
|
|
# Get time
|
|
df = pandas.read_csv(filename)
|
|
Zlist = df['Z_list'].to_numpy()
|
|
|
|
return Zlist
|
|
|
|
|