I have two lines of code that open two different .csv files one works and one does not. (the CodeMapping.csv file opens, the ValidationMapping.csv does not)
import pandas as pd
codeMapping = pd.read_csv('C:\Database\CodeMapping.csv')
validationMap = pd.read_csv('C:\Database\ValidationsMapping.csv')
Both lines are next to each other in the scipt and both files are at the path specified, I just can't figure this out......