how to use read csv converters in python code example
Example 1: read_csv separator
import pandas as pd
df = pd.read_csv('data.csv',sep=';')
# also working
df = pd.read_csv('data.csv',delimiter=';')
Example 2: how to read a csv file in python
import pandas as pd
df=pd.read_csv('the_file.csv')