Beginner to python here.
I am writing a program that involves opening and reading input from another file. The python file is called paint.py, while my input file is paint_test.in
fn = open('paint_test.in', 'r')
Whenever I try running that code, it gives me a "No file or directory error". The full path to my folder containing both these files: C:\Users\ayush\Desktop\USACO\paint
I would appreciate it if anyone could point me in the right direction here. Thanks!