parent
1f195fe950
commit
1d9f3852bf
@ -1,3 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
import sys
|
||||
|
||||
sys.path.append('./src')
|
||||
|
||||
import load_csv as l
|
||||
|
||||
l.csv_value()
|
||||
|
@ -1,3 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
import pandas as pd
|
||||
|
||||
|
||||
def csv_value():
|
||||
df = pd.read_csv('./data.csv')
|
||||
print(df.head())
|
||||
return df
|
||||
|
Loading…
Reference in new issue