hanks Adrian.
Good news is that alllll code is work in progress. Especially my code
Tricky to read at the moment.
Can you help us out by editing your previous post and adding in some syntax to make it all pretty?
So instead of
def this_is_code(x):
if readable:
#godhelpusall
I want
def this_is_code(x):
if readable:
#much better :)
To do this you wrap the code in tick marks `
Itβs the one just above your tab key on your keyboard.
Three of them in a row (optionally followed by the language youβre using).
Just like the below.
```python
def this_is_code(x):
if readable:
#These tick marks make my code so easy to understand.
```
Pix