微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

把这段不和谐的机器人代码变得更简单

如何解决把这段不和谐的机器人代码变得更简单

我正在努力让这段代码更简单,但 Python 是区分大小写的。有没有让这段代码更干净????

@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!")

解决方法

您可以使用 <str>.lower,如下所示:

@client.event
async def on_message(msg):
    if 'marcelo' in msg.content.lower():
        print('Keyword found in message')

您也可能不想使用 in 关键字,因为这意味着如果您输入“Hey Marcello”,它仍会输出。鉴于打印语句,我不知道这是否是您想要的,但大多数情况下使用 msg.content.lower().startsWith('marcelo')msg.content.lower() == 'marcelo'

更有意义

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。