You would use Python "Interactive Mode" to write a long program that contains many lines of code. True False

Answered on

False.

Python's "Interactive Mode" is not typically used to write long programs that contain many lines of code. Interactive Mode, also known as the Python interpreter or REPL (Read-Eval-Print Loop), is designed for short, interactive work such as experimenting with Python commands, debugging, or quick tests. For writing long and complex programs, it is more common to use "Script Mode" where you write your Python code in a file (with a .py extension) using a text editor or an Integrated Development Environment (IDE), and then execute the entire file as a program.