为不和谐嵌入中的字段设置2个值

时间:2018-10-22 06:26:58

标签: python discord discord.py

所以我需要在具有value =的字段中嵌入不和谐,但是我需要在同一个字段中显示两个值,我正在从API中提取数据,并且我有以下代码:

        itemobtain = item['obtained']['obtained']
        itemobtaintype = item['obtained']['type']

获得获取获得打印商品在商店中的成本,获得类型打印该商品使用的货币,我需要键入以在成本之后显示,但要显示在同一字段中 例如,如果itemobtain是800,而itemobtaintype是vbucks,我需要在字段中说“ 800 vbucks”

我尝试了以下代码:

embed.add_field(name="Obtainable from", value='{}'.format(itemobtain), value='{}\n'.format(itemobtaintype), inline=False)

但是出现错误“关键字参数重复”,因为我希望您不能有两个value =。有谁知道该怎么做或有可能吗?

1 个答案:

答案 0 :(得分:0)

稍作修改后,正确的代码就是

embed.add_field(name="Obtainable from", value='{} {{}}'.format(itemobtain).format(itemobtaintype), inline=True)