正确代码:
or_price = input("请输入橘子的价格:")
or_weight = input("请输入橘子的重量:")
or_pay = int(or_price) * int(or_weight)
print("您应该支付:" + str(or_pay) + "元")
1.input 输入的是字符串类型的,如果要运算的话需要强制转型int()
否则会出现如下报错:can’t multiply sequence by non-int of type ‘str’
2.print()里面既有字符转又有数字的话也是会报错的,()的内容要统一类型
报错:can only concatenate str (not “int”) to str