input 接受合法的Python 表達(dá)式
raw_input 將所有的輸入作為原始數(shù)據(jù),將其放入字符串中
>>> name = input("what's your name ?")
what's your name ? Yellow
Traceback (most recent call last):
File "", line 1, in
name = input("What's is your name ?")
File "", line 1, in
NameError: name 'yellow' is not defined
>>> Yellow = "yellow"
>>> name = input("what's your name ?")
what's your name ? Yellow
>>> print "Hello, " + name
Hello, yellow
>>> input('Enter a number ')
Enter a number 3
3
第一次輸入“Yellow”時,作為表達(dá)式,但是沒有定義,故報錯,如果輸入為正確表達(dá)式,則需要加單引號或雙引號,作為字符串表達(dá)式輸入。
第二次定義了Yellow為表達(dá)式,并進(jìn)行了賦值操作,所以再次輸入,為合法的表達(dá)式,故沒有報錯。
第三次輸入數(shù)字3,作為數(shù)字,即合法的表達(dá)式,故沒有報錯。
raw_input() 函數(shù)將所有輸入原始數(shù)據(jù),并放入字符串中,故不會報錯。
>>> name = raw_input("What's is your name ?")
What's is your name ?Yellow
>>> print "Hello, " + name
Hello, Yellow
網(wǎng)頁標(biāo)題:Python之input與raw_input的區(qū)別
文章地址:
http://weahome.cn/article/jpgoce.html