【报错管理】can only concatenate str (not "float") to str

报错内容
TypeError: can only concatenate str (not “float”) to str
代码

print("第"+(i+1)+"年在地球重量:"+ a)

报错原因
print()内的“+”前后数据类型保持一致
更正后代码

 print("第"+str(i+1)+"年在地球重量:"+ str(a))

你可能感兴趣的:(python)