Robotics & Artificial Intelligence

Name two different modes in Python that you can work on.

Getting Started

3 Likes

Answer

The two different modes in Python that we can work on are:

  1. Interactive Mode — In this mode, the user can instantly obtain the output for the input given at the Python command prompt (>>>).

  2. Script Mode — In this mode, the user can create a program file and save the complete set of instructions in it for later execution.

Answered By

1 Like


Related Questions