So the program is meant to read a csv file and print out the name and house of each line. However it keeps saying that it cant find my csv file even though they in the same folder.
students = []
with open("python projects/students.csv") as file:
for line in file:
names, house = line.rstrip().split(',')
student = {'name': names, 'house': house }
students.append(student)
for student in sorted(students):
print(f"{student['name']} is in {student['house']}")
Would print out file not found