can only concatenate str (not "decimal.Decimal") to str
时间: 2023-11-21 16:52:44 浏览: 245
解决Python 异常TypeError: cannot concatenate str and int objects
3星 · 编辑精心推荐
这个错误提示意味着你正在尝试将一个decimal.Decimal类型的对象与一个字符串连接起来,但是这是不允许的。要解决这个问题,你需要将decimal.Decimal对象转换为字符串类型。你可以使用str()函数将其转换为字符串类型,例如:str(decimal.Decimal对象)。然后你就可以将其与其他字符串连接起来了。
阅读全文