“wie man einen Discond Moderation Bot Python macht” Code-Antworten

wie man einen Discond Moderation Bot Python macht

#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

wie man einen Discond Moderation Bot Python macht

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

wie man einen Discond Moderation Bot Python macht

# 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

Ähnliche Antworten wie “wie man einen Discond Moderation Bot Python macht”

Fragen ähnlich wie “wie man einen Discond Moderation Bot Python macht”

Weitere verwandte Antworten zu “wie man einen Discond Moderation Bot Python macht” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen