我对python 3.6
有疑问。我正在尝试为树莓派制作输入输出系统。我对python很新,并且没有找到关于这个主题的任何内容
到目前为止,我有这个:
j = input ("type a number")
n = input ("type a number")
j*n
输入工作然后乘法不起作用。请帮忙!
答案 0 :(得分:0)
a = int(input ("type a number: "))
b = int(input ("type a number: "))
print ("a*b = ", a*b)
在第一个示例中,未定义输入。它只是打印输入值。当输入值被定义为整数(int)时,它执行算术运算并给出所需的值。