I have a very embarissing question. I do not understand why I am not finding a Excel (.csv) which is located as other Excels in the same Folder.
I can also open it in my Jupyter looking as such:
Country;Comparison;Area [SQ KM];
1;Russia;17,098,242,00;
2;Antarctica;14,200,000,00;
3;Canada;9,984,670,00;
4;United States;9,833,517,00;
5;China;9,596,960,00;
6;Brazil;8,515,770,00;
7;Australia;7,741,220,00;
8;India;3,287,263,00;
9;Argentina;2,780,400,00;
10;Kazakhstan;2,724,900,00;
11;Algeria;2,381,740,00;
12;Congo, Democratic Republic of the;2,344,858,00;
Directory: C:\Users\Andreas\data_quest\Datasets\Country Information
Every time you run a program, it has a starting directory where you’re running it from. Even when you start your browser, there is a starting directory.
Jupyter is no exception. The starting directory is where you’re working by default.
When you try to open a file by passing just a filename, you’re actually using a relative path.
Jupyter doesn’t know that you mean a file that is in another directory. It couldn’t possibly know, because files with the same name could exist in different places in your hard drive, so how could it then choose which one you meant?
Anyway, what is happening here is that you’re running Jupyter from C:\Users\Andreas\Desktop and the file you’re trying to open is in two different locations (different from the working directory, and different between them):