which mode is beneficial for testing code where the user gets the result or error immediately In python
Answers
Answered by
0
Answer:
Here is your answer
Explanation:
Interactive mode
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.
Answered by
1
Answer:
Interactive mode
Explanation:
Interactive modeis 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.
Similar questions