I have 2 files, tictactoe.py and tictactoe_functions.py. Both are in the same folder and tictactoe.py starts off by importing the other function via
import tictactoe_functions
This gives the error message "No module named tictactoe_functions".
I have tried this on a school computer and it works there, but not on my private computer. School computer runs linux and this one uses Windows 8 if that's relevant.
How do I solve this so it's possible to import the module?