I am trying to import a csv file using pandas in python but it is showing me the following error: ##code## Companies = pd.read_csv('C:\Users\salsa\Downloads\1000_Companies.csv')
output: SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
I tried the double slashes, forward slashes and putting 'r' at the front. nothing seems to work. Can anyone help me with this?
thank you