For the complete documentation index, see llms.txt. This page is also available as Markdown.

Python on Windows

Option 1: Google Colaboratory

Google Colaboratory is the preferred option for many course and research-adjacent Python tasks. Go to Google Colab to create an interactive Python Jupyter notebook.

Option 2: WinPython and Spyder

If you need to run Python locally on Windows, you can use Spyder through WinPython.

  1. Download WinPython.

  2. Install it on your PC.

  3. Open the Spyder application.

Spyder provides a script editor and an output panel.

Spyder on Windows

Plotting Example: sin(x)

Use the following code to plot a simple trigonometric function:

To save a figure instead of showing it interactively:

The output format is determined by the file extension.

Plotting Example: Singularity Brackets

The following script plots functions using singularity brackets by defining a bracket function.

Example output:

Singularity bracket plot

Last updated

Was this helpful?