1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
---
title: "Preserve output from python print"
output: md_document
---
```{r}
bt <- reticulate::import_builtins()
bt$print("Hello world")
```
## Print statements should always be captured
In `jupyter_compat = FALSE`: we should only see the output of both expressions.
```{python}
print(1)
print(2)
```
In `jupyter_compat = TRUE`: we should only see the output of both expressions.
```{python, jupyter_compat = TRUE}
print(1)
print(2)
```
## Only outputs of last expressions are captured in jupyter compat
In `jupyter_compat = FALSE`: we should only see the output of both expressions.
```{python}
1 + 0
1 + 1
```
`jupyter_compat = TRUE`: we should only see the output of the last expression.
```{python, jupyter_compat = TRUE}
1 + 0
1 + 1
```
## One can disable outputs by using `;`
In `jupyter_compat = FALSE`: we should only see the print statement output
```{python}
print("hello");
1 + 0;
1 + 1;
```
`jupyter_compat = TRUE`: we should only see the print statement output
```{python, jupyter_compat = TRUE}
print("hello");
1 + 0;
1 + 1;
```
## `jupyter_compat` works with interleaved expressions
```{python, jupyter_compat=TRUE}
print('first_stdout')
'first_expression'
print('second_stdout')
'final_expression'
```
|