I have a very simple error in Python with Spyder:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
ds=pd.read_csv(".\verikumesi\NBA_player_of_the_week.csv")
When I run the above code, the I get an error:
File "C:/Users/Acer/Desktop/MASAÜSTÜ/github/deneme.py", line 12 ds=pd.read_csv(".\verikumesi\NBA_player_of_the_week.csv") ^ SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 12-13: malformed \N character escape
How can I fix it?