I have a python file main.py which is the driver of my GUI program and a folder games both inside the same folder. I want to refer the driver function in a file games\TicTacToe.py which is declared in main.py. How can I do it?
Here is my file structure
Project
|-games
| |-TicTacToe.py
| |-Snake_Game.py
|-main.py