Python Shell

Moeed NasirMoeed Nasir
5 min read

Introduction

Python Shell, also known as the Python Interactive Interpreter, is an essential tool for developers, allowing real-time execution of Python code. It is particularly useful for testing small snippets of code, debugging, and learning Python interactively.

This blog will cover:

  • What is the Python Shell?

  • How to start the Python Shell?

  • How does it work internally?

  • Basic and advanced commands.

  • Differences between Shell and Script mode.

  • Customizing the Python Shell.

1. What is Python Shell?

Python Shell is an interactive environment where you can execute Python commands individually and get immediate feedback. It is a Read-Eval-Print Loop (REPL), meaning:

  • Read: Takes user input.

  • Evaluate: Processes the command.

  • Print: Displays the output.

  • Loop: Repeats the process for new inputs.

Unlike running Python scripts from files, the shell allows quick testing and debugging.

2. How to Start the Python Shell?

On Windows, Linux, and macOS

  1. Open Command Prompt (Windows) or Terminal (Linux/macOS).

  2. Type:

     python
    

    or, if Python 3 is installed separately:

     python3
    
  3. Press Enter, and you will see:

     Python 3.x.x (default, ...) 
     Type "help", "copyright", "credits" or "license" for more information.
     >>>
    

Using Python Shell in IDEs

Many IDEs provide built-in Python Shells:

  • PyCharm: Open Python Console.

  • VS Code: Install Python Extension → Run Python: Start REPL.

  • Jupyter Notebook: Uses an interactive shell within notebooks.

3. Python Shell vs Python Script Mode

FeaturePython Shell (REPL)Python Script Mode
Execution TypeLine-by-lineFull file execution
Use CaseQuick testing, debuggingWriting complete programs
OutputImmediateOnly after running the script
PersistenceTemporary (session-based)Stored in a .py file

Example in Python Shell:

>>> x = 10
>>> y = 20
>>> x + y
30

In script mode (script.py file):

x = 10
y = 20
print(x + y)  # Output: 30

4. Basic Commands in Python Shell

CommandDescription
print("Hello")Prints output
x = 10Assign a value to x
type(x)Shows data type
dir()Lists available objects
help(object)Shows documentation for an object
exit()Exits the shell

Example:

>>> name = "Python"
>>> print(name.upper())  
PYTHON

5. Advanced Features of Python Shell

(A) Using Multi-Line Statements

Python Shell usually executes one line at a time, but you can write multi-line code using \ or indentation:

>>> if True:
...     print("Hello")
...     print("Python")
...
Hello
Python

Press Enter twice to execute multi-line blocks.

(B) Running Python Scripts in Shell

You can execute an external Python file (script.py) inside the shell:

>>> exec(open('script.py').read())

Or use:

python script.py

in the terminal.

(C) Importing Modules in Shell

You can import Python modules interactively:

>>> import math
>>> math.sqrt(25)
5.0

6. Internal Working of Python Shell

  1. Tokenization: Breaks input into tokens (x = 10 → x, =, 10).

  2. Parsing: Converts tokens into an Abstract Syntax Tree (AST).

  3. Compilation: Generates bytecode (machine-independent code).

  4. Execution: Bytecode is executed by the Python Virtual Machine (PVM).

Example:

>>> x = 10
>>> x + 5
15

Internally:

  • x = 10 creates a reference in memory.

  • x + 5 retrieves the value, performs addition, and prints output.

7. Customizing Python Shell

(A) Changing the Prompt

Default shell prompt:

>>>  # Primary prompt
...  # Secondary prompt (for multi-line code)

You can modify it:

>>> import sys
>>> sys.ps1 = "Python> "
Python> print("Hello")
Hello

(B) Enabling Command History

You can use arrow keys (↑, ↓) to navigate through previously executed commands.

On Linux/macOS, enable history logging:

echo "import readline; import rlcompleter; readline.parse_and_bind('tab: complete')" >> ~/.pythonrc

(C) Running Python in Interactive Mode

Run Python interactively within a script:

import code
code.interact(local=locals())

This will start an interactive shell at that point in the script.

8. Limitations of Python Shell

LimitationExplanation
No Code PersistenceOnce you exit, the session is lost.
Not Ideal for Large ProgramsBest for small snippets, not full applications.
Limited Debugging ToolsDebugging is better in IDEs.

9. Alternatives to Default Python Shell

(A) IPython (Interactive Python)

A more powerful shell with features like syntax highlighting, better history management, and auto-completion.

Install IPython:

pip install ipython

Run:

ipython

(B) Jupyter Notebook

An interactive environment that supports Markdown, plotting, and data visualization.

Install Jupyter:

pip install notebook

Run:

jupyter notebook

(C) bpython

A lightweight, enhanced interactive shell:

pip install bpython

Run:

bpython

10. Python Shell vs IPython vs Jupyter

FeaturePython ShellIPythonJupyter Notebook
Auto-completionNoYesYes
Syntax HighlightingNoYesYes
Markdown SupportNoNoYes
Inline PlottingNoYesYes
Session HistoryNoYesYes

Conclusion

Python Shell is a powerful tool for quick testing and debugging. While it has limitations, advanced shells like IPython and Jupyter provide better interactivity. Understanding Python Shell's internal working and customization helps developers write better code.

0
Subscribe to my newsletter

Read articles from Moeed Nasir directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Moeed Nasir
Moeed Nasir