如何让机器人在消息中下一行?

How do you make a bot go a line down in a message?

一段时间以来,我一直在使用 python 开发一个 discord 机器人。一切进展顺利,但有一个问题我还没有找到解决办法。在 discord 应用程序本身中,在聊天中输入时,您可以按住“shift”按钮并按“enter”键在聊天中向下移动一行。你如何让机器人在文本中这样做?这是我目前正在做的一个例子

      if message.content.startswith('$help'):
    await message.channel.send('Hello. What can I help you with?')

可能有一个简单的答案,因为我知道这是可能的。但是我没有找到。

您可以使用 \n 转义字符添加换行符。

  if message.content.startswith('$help'):
    await message.channel.send('Hello.\nWhat can I help you with?')

这将打印

Hello. 
What can I help you with?