You have to use the encoding as latin1 to read this file as there are some special character in this file, use the below code snippet to read the file,
import pandas as pd
data=pd.read_csv("C:\\Users\\akashkumar\\Downloads\\Customers.csv",encoding='latin1')
print(data.head())