Structuring your files

Each of your projects should live in its own folder somewhere sensible (like in a Digital Tech folder in your OneDrive!).

Digital Tech/
│
├── firstGame/
│   └── game.py
│
├── secondGame/
│   └── game.py
│
├── thirdGame/
│   └── game.py
│
└── fourthGame/
    └── game.py

Within each of those folders, there will be the python file with your game code in it, along with some other files and folders. Here is an example of a more complex project:

myGame/
├── game.py
│
├── images/
│   ├── someImage.png
│   ├── anotherImage.jpg
│   └── ... # sprites, tiles and other image files
│
├── fonts/
│   └── ... # any font files
│
├── sounds/
│   └── ... # any sound files
│
└── music/
    └── ... # any music files

You don’t need to have those folders unless you have something to put in them.