Type the lines of the exercise into the empty cells. Ensure that any cells you use are code cells and not markdown cells.
Put help(open)
into a cell (ensuring it is a code cell and not a markdown cell) and press Shift + Return
.
You can achieve everything in the exercise with the following code:
### Level 3 Heading
[hyperlink](https://www.google.co.uk)
* bullet
* point
* list
![](./path/to/image.png)
code `keyword`
# block of code with python syntax highlighting
for k in range(10):
print(k, 'Hello World!')
The final code block is displayed using three backticks ```
, but we use markdown to produce this material, so we can't show all the possible syntax here!