我在我的编码课程中收到此代码。我究竟做错了什么? [已关闭]

问题描述 投票:0回答:1
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 个用户输入的整数的乘积。

python input integer output expression
1个回答
1
投票

看起来您正在使用

input()
函数获取整数。 改为这样做

a1 = int(input())

这会将字符串转换为整数值

© www.soinside.com 2019 - 2024. All rights reserved.