For example, what is the difference between
import pandas as pd
dtf = pd.read_csv("c:\\pywork\\Employee.csv")
print(dtf)
and
import pandas as pd
dtf = pd.read_csv("c:\pywork\Employee.csv")
print(dtf)
Basically in both the cases, the only difference is the backslash, and from experience i have seen both function the same, but also seen the single backslash format give error or sometimes the double backslash format give errors. So what is the difference?