【发布时间】:2021-08-29 21:49:30
【问题描述】:
我想在这样的嵌入中创建一个段落:
desc1 = ("
criteria for Youtuber role:
over 50 subscribers
upload at least once a month
criteria for Twitch Streamer role:
Over 50 followers
stream once a month")
aembed=discord.Embed(title="New @Youtuber and @Twitch Streamer roles", description=(desc1), colour=discord.Color.blue(), url="")
不像我现在拥有的:
desc1 = ("criteria for Youtuber role: over 50 subscribers, upload at least once a month, criteria for Twitch Streamer role: Over 50 followers, stream once a month")
aembed=discord.Embed(title="New @Youtuber and @Twitch Streamer roles", description=(desc1), colour=discord.Color.blue(), url="")
每次我尝试第一个时,我都会收到一条错误消息,因为它不再是文本的一部分 我已经尝试过大括号和逗号
【问题讨论】:
-
为什么不直接插入到描述中?
标签: discord discord.py