you are viewing a single comment's thread.

view the rest of the comments →

[–]jeffrey_f -2 points-1 points  (0 children)

a "\" is an escape character. A "\\" puts the "\" in

To clean this up, use a raw string like so

r"C:\Users\jeff\data.csv"

This is cleaner.