About Lesson
Execute Python Programs
You can execute Python programs in multiple ways.
- Interactive mode using Python interpreter directly
- Script mode
- IDEs
Interactive mode: The first Interactive mode is for executing a single Python statement at a time.
Script mode: The second Script mode executes a group of Python statements in a script file.
IDE: The third IDE mode is for executing Python project that consists of several
Python files.