Exited with return code 1.
Traceback (most recent call last):
File "main.py", line 5, in <module>
print(int1 * int2 * int3)
TypeError: can't multiply sequence by non-int of type 'str'
尝试输出 3 个用户输入的整数的乘积。
看起来您正在使用
input()
函数获取整数。
改为这样做
a1 = int(input())
这会将字符串转换为整数值