I'm struggling to get this code more simple but Python is case-sensitive a lot. Is there to turn this code cleaner????
@client.event
async def on_message(msg):
if 'Marcelo' in msg.content:
print('Keyword found in message')
await msg.channel.send("oh this shit again!")
if 'marcelo' in msg.content:
print('Keyword found in message')
await msg.channel.send("oh this shit again!")
if 'MARCELO' in msg.content:
print('Keyword found in message')
await msg.channel.send("oh this shit again!")