“Como fazer uma moderação de discórdia Python” Respostas de código

Como fazer uma moderação de discórdia Python

#You can solve your problem like this:

@client.event
async def on_message(message):
	if "your word" in str.lower(message.content):
    	await message.delete()

#This programm makes the message into all lowercase letters. 
#just be carefull, your word that you want to be deleted has to be written in all lowercase letters too.

#if you want to look if an element is in a list do:
bad_words = ["test", "bad", "word"]

@client.event
async def on_message(message):
	for word in bad_words:
		if word in str.lower(message.content):
    		await message.delete()
Gleaming Giraffe

Como fazer uma moderação de discórdia Python

how do i make it so it takes capitals like FUCK it wont delete but if i add that to word list things like fUck wont delete cus capital U
Testy Tuatara

Como fazer uma moderação de discórdia Python

# for higher letters

@client.event
async def on_message(message):
	for word in bad_words:
		if word in str.higher(message.content):
    		await message.delete()
Hanz_Holu

Respostas semelhantes a “Como fazer uma moderação de discórdia Python”

Perguntas semelhantes a “Como fazer uma moderação de discórdia Python”

Mais respostas relacionadas para “Como fazer uma moderação de discórdia Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código