{% extends "base.html" %} {% block title %}Marimo Learn - Interactive Python Notebooks{% endblock %} {% block content %}

Interactive Python Learning with marimo

Explore our collection of interactive notebooks for Python, data science, and machine learning.

Marimo Logo

Why Learn with Marimo?

{% include "icons/lightning.svg" %}

Interactive Learning

Learn by doing with interactive notebooks that run directly in your browser.

{% include "icons/flask.svg" %}

Practical Examples

Real-world examples and applications to reinforce your understanding.

{% include "icons/book.svg" %}

Comprehensive Curriculum

From Python basics to advanced machine learning concepts.

Explore Our Courses

{% for course_id, course in courses.items() %} {% set notebooks = course.get('notebooks', []) %} {% if notebooks %}

{{ course.get('title', course_id) }}

{% if course.get('description_html') %} {{ course.get('description_html')|safe }} {% endif %}

    {% for notebook in notebooks %}
  1. {{ notebook.title }}
  2. {% endfor %}
{% endif %} {% endfor %}
{% endblock %}