I am trying to read a .csv file into a Python dataframe but it is showing null values.
The .csv file has columns separated by ;.
I am using this code:
import pandas as pd
data = pd.read_csv('testfile.csv', sep = ';')
and this is the output:
All values are null and number of rows got doubled
