A quick guide to discourse

This is a quick guide to discourse for the purposes of this course:

Pro-tip: Formatting code

To format your code there are several options. The best way is to add three back ticks on a new line followed by the word python, your code on a new line and finally three back ticks to end things off:

```python
def some_python_code(param):
    print(param)
```

Which will be displayed like this:

def some_python_code(param):
    print(param)

Give it a try :smile: