7 lines
62 B
Python
7 lines
62 B
Python
import pandas as pd
|
|
|
|
df = pd.read_csv('data.csv')
|
|
|
|
print(df)
|
|
|