Latest Posts

VIEW ALL →

CODING

from pathlib import Path html = r''' CodeNotebook — Python in Browser
CodeNotebook
Python • Interactive • Learn • Build
Loading Python…
📓 Welcome.ipynb ●
Python 3
In [1]:
In [2]:
In [3]:
Md [4]:
In [5]:
Made with ❤️ by CodeNotebookPython in Browser using Pyodide
''' path = "/mnt/data/CodeNotebook.html" Path(path).write_text(html, encoding="utf-8") print(f"Created: {path}")

Comments