导语:
本文主要介绍了关于python里input怎么解释的相关知识,包括python raw_input,以及python3这些编程知识,希望对大家有参考作用。
python中input函数有类似c中的scanf函数的功能。
Python2中input使用如下:
>>>x = input("x:")
x: 3
>>>y = input("y:" )
y: 4
>>> print x*y
12
但是Python3中input使用会有如下的提示:
>>> x = input("x:")
x:3
>>> y = input("y:")
y:4
>>> 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'
>>>
原因:
Python3以后的版本中,raw_input和input合体了,取消了raw_input,并用input代替,所以说现在版本的input接受的是字符串,可以如下处理:
>>> x = int(input("x:"))
x:3
>>> y = int(input("y:"))
y:4
>>> print (x*y)
12
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python的基本数据类型有哪些12/30
- ♥ python如何检查列表元素是否为nil09/08
- ♥ strip()、lstrip()、rstrip()函数你真的了解吗?12/24
- ♥ python打开文件的两种方式08/26
- ♥ python可以当黑客吗09/13
- ♥ python如何导入re模块10/10
内容反馈