The following Python code block does not display the value of x.
```{python}
x = 6
x
```
If print() is used, as below, the value of x is displayed.
```{python}
print(x)
```
Is there a chunk option or some other way to have Python code chunks display the results of an implied print?
Mark