Traceback (most recent call last): File "C:\Users\Admin\Desktop\BMI指数.py", line 4, in <module> BMI = 体重/(身高*身高)TypeError: can't multiply sequence by non-int of type 'str'
input获取到用户输入的内容格式是字符串类型,
字符串需要转化为int,才能使用加减乘除运算符号。