1. 程式人生 > >【Python】Python中input的使用

【Python】Python中input的使用

input有類似c中的scanf函式的功能。

Python2input使用如下:

>>>x = input("x:")
x: 3
>>>y = input("y:" )
y: 4
>>> print x*y
12

但是Python3input使用會有如下的提示:

>>> 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_inputinput合體了,取消了raw_input,並用input代替,所以說現在版本的input接受的是字串,可以如下處理:

>>> x = int(input("x:"))
x:3
>>> y = int(input("y:"))
y:4
>>> print
(x*y) 12