在.format python discord中检查True

时间:2018-07-23 20:53:01

标签: python discord discord.py string.format

await Bot.send_message(message.channel, "**{}**, you have:\n{}".format(message.author.name, author_dragon > 0))

第二个{}仅出现True,我希望他显示一个表情符号,该怎么办? 给我完整的答案,谢谢!

1 个答案:

答案 0 :(得分:1)

您可以只发送unicode字符。它将自动转换为表情符号

await Bot.send_message(message.channel, "**{}**, you have:\n".format(message.author.name))