FileNotFoundError: [Errno 2] No such file or directory
When you open a file with the name address.csv, you are telling the open() function that your file is in the current working directory. This is called a relative path. To give you an idea of what that means, add this to your code: That will print the current working directory along with all the files in it. … Read more