- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we use Python in interactive mode?
Python is a high level programming language that helps a user to run a program and integrate systems more efficiently; as it executes a program in comparatively fewer lines of code. In this programming language, a code can be run in two ways −
Interactive mode, and
Script mode
Note − To run a python code interactively, we use the command prompt in Windows, terminal in Linux and macOS, etc.
In this article, we will learn how to execute a python code in interactive mode in Windows. However, the commands are almost same in other operating systems as well.
Python in Interactive Mode
Running a Python code interactively must be done from the Command Prompt of Windows. This is possible using the python or python3 keywords, depending on the version of Python installed in your system.
Let us look at a step by step process to run a Python code from a Windows Command Prompt.
Example
Execute Python from command prompt to run Python interactive shell.
C:\user>python >>>
Python prompt is made up of three greater than symbols. Any valid expression can now be evaluated interactively. Let us start with evaluating arithmetic expression.
>>> 2+3*5 17
You can assign value to a variable or accept input from user, and print its value.
>>> name=input("enter your name") enter your name TutorialsPoint >>> name ' TutorialsPoint'
Note − Various applications like Jupyter Notebook can also allow you to run your Python code interactively.