lets say I have an on_message event that sees if the message has "pick crocka"
@client.event
async def on_message(message):
if "pick crocka" in message.content.lower():
I want him to pick the part in the message where 2 or more stuff are inside parentheses, split with ,s likes this:
> pick crocka, do you like pizza with pinapple? (i like it, i hate it)
> hmmm, id say i hate it
(note that he would pick stuff randomly, I know the random.choice() part, all I need is how I can take only the part inside parentheses