I have a CSV file with delimiter “,”. I am trying to read it into DataFrame.
my_df = pandas.read_csv("my_file.csv", engine="c")
It is throwing error
ValueError: No engine for filetype: 'csv'
The environment is python 3.8.11 and pandas version is 2.0.3.
Tried using “python” engine, but no luck.