- import pandas as pd
- tbl1 = pd.import_csv('sample_prices.csv')
- tbl1.print()
and still not receiving anything? It does not even come up with an error.
CodePudding user response:
The code might be written this way.
import pandas as pd
tbl1 = pd.read_csv('sample_prices.csv')
print(tbl1)
CodePudding user response:
import pandas as pd
tbl1 = pd.read_csv('sample_prices.csv')
print(tbl1)
