InterviewSolution
Saved Bookmarks
| 1. |
Explain the different working modes of python |
|
Answer» 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. |
|