Files
.profile/example.ipynb
2026-01-31 15:19:11 -06:00

1.3 KiB

My First Notebook

This is a simple Jupyter Notebook to test rendering in Gitea.

You can write bold, italic, or inline code here.

In [1]:
print("Hello, Gitea!")
Hello, Gitea!

Math Example

Here is an inline equation: $E = mc^2$ And a display equation: $$\int_0^1 x^2 dx$$

In [2]:
numbers = [1, 2, 3, 4, 5]
[n**2 for n in numbers]
Out[2]:
[1, 4, 9, 16, 25]