Python Discord Bot如何将消息与列表进行比较

我正在制作一个python Discord Bot,现在我正试图使他响应列表中的特定消息,但是存在一些问题,因为他仅在消息开始时才响应(不在中间或结尾) 。所以我想弄清楚如何让他比较所有文本并与消息列表匹配,发送文本答案。

Python 3.8.2

码:

import discord
from discord.ext        import commands
from discord.ext.commands   import Bot
import asyncio

bot = commands.Bot(command_prefix = "$")
phrases = ["QWACK","KWAK","AARK","KWAAAK"]

@bot.event
async def on_ready():
    print ("I'm ready!")

@bot.event
async def on_message(message):
    if str(phrases) in message.content:                                                    
        await message.channel.send("dhbang")