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

User Zzyzy
by
6.3k points

1 Answer

1 vote

Answer:

True

Step-by-step explanation:

There are basically two ways to excecute Python. Either via the script mode or interactive mode.

Script mode is the situation where you saved your python file in .py and execute the file using python interpreter.

Interactive mode is the terminal mode or command line shell where the result to each statement is returned immediately to the user.

User Tony Abrams
by
5.5k points