Computer Science

What are advantages/disadvantages of working in Interactive mode in Python?

Getting Started

99 Likes

Answer

Interactive mode is useful for testing code. We can type the commands one by one and get the result of error immediately for each command. Disadvantages of Interactive mode are that it does not save commands in form of a program and also output is sandwiched between commands.

Answered By

45 Likes


Related Questions