Computer Science, asked by MSMISTARI, 1 year ago

WHAT IS SCRIPT MODE IN PYTHON

Answers

Answered by kinj3599
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.

MSMISTARI: THANK U
Answered by monupawar85
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