python第二版中 获取用户输入 input函数中最后使用x * y提示这个! 小生初学,求大神指导! 10
3个回答
展开全部
Python 2.7.9 (default, Mar 8 2015, 00:52:26)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> x=input("x: ")
x: 42
>>> y=input("y: ")
y: 34
>>> print x * y
1428
>>>
Python 3.4.2 (default, Oct 19 2014, 13:31:11)
[GCC 4.9.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x = input (":")
:42
>>> y=input(":")
:34
>>> print (x*y)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can't multiply sequence by non-int of type 'str'
>>> print(int(x) * int(y))
1428
>>>
追问
还是不行。。。
追答
分都拿到了,你说不行。咋不行
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你既然是键盘输入给X,Y赋值,就不要在里面给他个数字啊,你这等于”x=x:34“和”y=y:42“
你算乘法怎么也算出不来啊
x:34*y:42=?
你算乘法怎么也算出不来啊
x:34*y:42=?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询