I 'm python beginner
I can't execute this code
with open('D:\Machine_learning_student_project\New folder\student-mat.csv','r') as f:
a = csv.reader(f)
open function syntax 'mode' wont work
but when I change to "/"
with open('D:/Machine_learning_student_project/New folder/student-mat.csv','r') as f:
a = csv.reader(f)
It just worked