What are the advantages of working in interactive mode in python?
Answers
Answered by
63
The interactive mode is one of the modes in the Python. The other mode is the script.
Advantage 1: Interactive mode is a command line shell which gives immediate feedback for each statement. Subsequently, while running previously fed statements in the active part of the memory.
2- Interactive mode is a good way to play around and try variations on syntax.
Thanks for asking the question. Hope you liked the answer.
Answered by
28
1. Interactive mode is useful and convenient for single line or block of codes
2.if you want to print a code just type in and press enter
eg: >>>4+4
8
direct answer no need to use print function
Similar questions