WHAT IS SCRIPT MODE IN PYTHON
Answers
Answered by
5
Python has two basic modes: script and interactive.
The normal mode is the mode where the scripted and finished .py files are run in thePython interpreter.
Interactive mode is a command line shell which gives immediate feedback for each statement, while running previously fed statements in active memory.
The normal mode is the mode where the scripted and finished .py files are run in thePython interpreter.
Interactive mode is a command line shell which gives immediate feedback for each statement, while running previously fed statements in active memory.
MSMISTARI:
THANK U
Answered by
10
There are two different modes in python:-
1) Interactive Mode- When we check the statement line by line this mode is called interactive mode.
2) Script Mode- When we check the statement paragraph by paragraph this mode is called script mode.
Similar questions