Py
PyNow

Run NumPy in Your Browser

Numerical Computing in Your Browser

Run NumPy code online for free. Perform array operations, linear algebra, and numerical computing in Python — no setup required.

main.py
Ln 1, Col 1Spaces: 4
Python 3.13 (Pyodide)
Hit Run to see output here.

What You Get

Full NumPy support
Array and matrix operations
Linear algebra
Random number generation

NumPy Examples

Matrix Multiplication

import numpy as np

A = np.array([[1, 2], [3, 4]])
B = np.array([[5, 6], [7, 8]])
print("A @ B =")
print(A @ B)