作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
async def on_member_update(before, after):
print(str(after.username))
if str(after.username) == "example username" # I'm looking for something like this
print(str(af`enter code here`ter.username))
if str(before.status) == "online":
if str(after.status) == "offline":
print("offline")
elif str(before.status) == "offline":
if str(after.status) == "online":
print("online")
那么我怎样才能让它显示哪个用户触发了这个事件呢?
最佳答案
before
和 after
是成员对象,因此您可以轻松地从那里获取成员名称。
你的代码应该是这样的:
async def on_member_update(before, after):
member = bot.get_guild(before.guild.id).get_member(before.id)
print(member.name)
if str(member.name) == "example username"
print(member.name)
if str(before.status) == "online":
if str(after.status) == "offline":
print("offline")
elif str(before.status) == "offline":
if str(after.status) == "online":
print("online")
关于python - 不和谐.py : How do I get the name of the user who triggers on_member_update?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67798670/
我是一名优秀的程序员,十分优秀!