When I load and run the code below I get a UnicodeDecodeError. How to resolve this problem?
I have a CSV file in my folder but this type of error is coming and it will not show a list of heads in output. I use Jupyter notebook to run the codes as well as for programming.
import pandas as pd
companies=pd.read_csv('companies.csv')
round2=pd.read_csv('rounds2.csv')
print(round2.head())