input有類似c中的scanf函式的功能。
python2中input使用如下:
>>>x = input("x:")
x: 3
>>>y = input("y:" )
y: 4
>>>
print x*y
12
>>> x = input("x:")
x:3>>> y = input("y:")
y:4>>> print (x*y)
traceback (most recent call last):
file
"", line 1, in
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 python中的遍歷
遍歷list集合 infp 1,2,3,3,3 for m in infp print m 值得注意的是,m在此處的值是infp中的想對應的值,當我們通過del infp m 或者 infp.remove m 如下 infp 1,2,3,3,3 for m in infp if m is 3 pri...
python python中的urllib模組
import urllib.request response urllib.request.urlopen html response.read decode utf 8 print html 指定請求頭的方式 import urllib.request url headers request ur...
Python Python中的程序
python提供了多個模組用於建立程序。比如os.fork 適用於linux unix mac 和multiprocessing模組和pool程序池。multiprocessing模組提供了乙個process類來代表乙個程序物件,語法如下 使用的為可選引數 引數說明 group 引數未使用,值始終未...