Coding delimer

:slight_smile: hanks Adrian.

Good news is that alllll code is work in progress. Especially my code :stuck_out_tongue:

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? :butterfly:

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 :point_right: `
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 :heavy_heart_exclamation:

1 Like