I'm fairly new to python, so I'm still not aware of the proper terminology or the intricacies of this language. Right now, I'm creating a program that is designed to mess with the user (adjust the brightness, change the desktop background, play sounds, etc.) -- completely harmless.
My professor recommended I consider turning the file into an executable. However, the tutorials and information I've researched to do so haven't been very helpful.
The python program I have imports functions from other python files within the same folder. This folder also contains image and sound files that my program uses.
If I were to turn my python file into an executable, I'm assuming I would also have to do something with the other files my program is using, but I'm not sure how to do that, or what to do.
Any help or advice on how to turn my python file into an executable, as well as what to do for the other files my program uses, would be greatly appreciated!
This is all being done on python 3.7 and Windows 10.