CBSE Class 12 Computer Science Question 51 of 120

Review of Python Basics — Question 3

Back to all questions
3
Question

Question 3

What are the advantages/disadvantages of working in interactive mode in Python?

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.