Published
- 1 min read
python read csv
The solution for this is noted below
python read csv
Solution
# pip install pandas
import pandas as pd
# Read the csv file
data = pd.read_csv('data.csv')
# Print it out if you want
print(data)
Try other methods by searching on the site. That is if this doesn’t work