This video will illustrate what the CSV file extension is ? and how to deal with it using python.
script used:
-------------------
import pandas as pd
df = pd.read_csv('CSV_data.txt')
df.head()
df_1 = pd.read_csv('CSV_data.csv', delimiter=',')
df_1.to_csv('new_file.csv')