Hey guys!
I'm going through Stefan's Python course (almost done), and there was an error I was facing on the video for creating your own modules (last video of the OOP section in the Python course).
I did most of the course using Sublime text and Command Prompt (installed anaconda for this functionality) and it's been working perfectly fine.
I used the same code in the video, and the code works in IDLE, why not command prompt?
Program Flow:
Step 1: Create the modules
module_1.py
import turtle, tkinter
def a_function():
print("A function has been fired!")
cl