将API值的响应更改为其他

时间:2018-10-22 23:06:48

标签: python discord discord.py

因此,我要从API中提取数据,并将其放入与字段和值嵌入的不和谐状态中,因此我想这样做,以便如果特定值返回为“ None”,则将其更改为“ Not Found”,但是摆弄一个小时,我无法弄清楚。这是我的代码:

  if item:
    itemdesc = item['description']

    embed = discord.Embed(title="Item API Search Result", color=0xc600bc)

    embed.add_field(name='Description', value=itemdesc, inline=False)

1 个答案:

答案 0 :(得分:1)

假设这是您要参考的说明字段,请尝试:

itemdesc = item['description'] if item['description'] else 'Not Found'