Informatics Practices

What is the difference between Script mode and Interactive mode in Python?

Getting Started

2 Likes

Answer

In script mode, we write a Python program in a file and execute it to display the output and in interactive mode, we use the Python prompt '>>>' to start typing commands and see immediate output.

Answered By

1 Like


Related Questions