Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion tutorials/executable/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jupytext:
extension: .md
format_name: myst
format_version: 0.13
jupytext_version: 1.16.4
jupytext_version: 1.17.1
kernelspec:
display_name: Python 3 (ipykernel)
language: python
Expand Down Expand Up @@ -34,3 +34,22 @@ This cell has an expected error:

1 / 0
```

## Exercises

Add one plus one.

```{code-cell} ipython3
# Write your solution here.
```

```{code-cell} ipython3
---
tags: [hide-cell]
jupyter:
source_hidden: true
---
# Expand to reveal solution.

1 + 1
```