Computer Science, asked by AnugrahVarghese3383, 11 months ago

What Is Difference Between Interactive Mode And Script Mode

Answers

Answered by mkiruthivasan2
6

Answer:

Image result for What Is Difference Between Interactive Mode And Script Modestackabuse.com

Python has two basic modes: script and interactive. The normal mode is the mode where the scripted and finished .py files are run in the Python interpreter. Interactive mode is a command line shell which gives immediate feedback for each statement, while running previously fed statements in active memory.

Explanation:Image result for What Is Difference Between Interactive Mode And Script Modestackabuse.com

Python has two basic modes: script and interactive. The normal mode is the mode where the scripted and finished .py files are run in the Python interpreter. Interactive mode is a command line shell which gives immediate feedback for each statement, while running previously fed statements in active memory.Image result for What Is Difference Between Interactive Mode And Script Modestackabuse.com

Python has two basic modes: script and interactive. The normal mode is the mode where the scripted and finished .py files are run in the Python interpreter. Interactive mode is a command line shell which gives immediate feedback for each statement, while running previously fed statements in active memory.

Answered by Anonymous
17

Answer:

Explanation:

The basic differences between these two modes are as follows:

Interactive mode is used when an user wants to run one single line or one block of code.

Script Mode, on the other hand , is used when the user is working with more than one single code or a block of code.

Similar questions