Explain different working mode of python.
Answers
Answered by
12
Answer:
Python has two basic modes: normal 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
2
Answer:
Interactive mode as the name suggest allowed us to interact with OS......
Explanation:
In an interactive mode we cannot save the command entered by the user. The output is also sandwich between commands and creates confusion when longer programs are designed. There is no code file created or saved that can be used for future reference..
Similar questions