Can't convert 'float' object to str implicitly
我试图制作一个菜单,它给了我这个错误。
这就是问题所在的部分。
if self.Strawberry.get():
stw = self.Strawberry_ent.get()
stn = int(stw)
stb = stn * 2.5
total += stb
答案 0 :(得分:5)
假设total
是一个字符串,那么你错过了一个演员:
total += str(stb)