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. Try this:
import pandas as pd
data=pd.read_csv("C:\\Users\\akashkumar\\Downloads\\Customers.csv",encoding='latin1')
print(data.head())
If you want to get a deeper understanding of data science and libraries used in it you can watch this youtube video: