I want a way to create a list out of strings that appear in-between a specific character, in this case ` <-- that
so for example this string:
string = '<#346283347234774> **Useless text that I want to remove**
more useless text it is useless, so useless.
`potato`, `boxes`, `christmas tree`'
becomes this list
list = ['potato', 'boxes', 'christmas tree']
I've tried using regex but I would rather something readable to a total noob that i'll be able to understand when i come back to the code to update it at a later date.
Sorry if this is painfully simple, i'm really new to Python and programming in general.