Can we label the cells so we know what cell is dying when executing? [Python] #5008
-
It's sometimes the case that I have so many cells I don't know which cell is failing. In r-markdown: https://bookdown.org/yihui/rmarkdown/r-code.html
I'm using Python. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I don't know if it's possible, but I would assume it is, to display the @bryanwhiting There is nothing you can do on your hand here I am afraid. Quarto code example.---
title: "Quarto- Minimal Working Example"
format: html
---
```{python}
#| label: mean
#| id: mean1
# compute the mean of a list of numbers
def mean(x):
return sum(x) / len(x)
# assign a list of numbers to x
x = [1, 2, 3, 4, 5]
# compute the mean of x
mean(x)
``` Progress bar in |
Beta Was this translation helpful? Give feedback.
-
FYI, added in: |
Beta Was this translation helpful? Give feedback.
FYI, added in: