您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python中input函數(shù)的運行方式的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
input()以字符串的方式獲取用戶輸入:
>>> x = input() 4.5 >>> type(x) <class 'str'> >>> y = input() Do you love python? >>> type(y) <class 'str'>
輸入的字符串可以通過運算符進行連接、復制等操作:
>>> x = input() abc >>> x * 3 'abcabcabc' >>> y = input() 123 >>> x + y 'abc123'
但無法直接參與算術運算,如:
>>> x = input() 5 >>> x + 5 Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: must be str, not int >>> x * 5 '55555' >>> y = input() 6 >>> x * y Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: can't multiply sequence by non-int of type 'str'
此時可以使用轉換,方法有多種:
1.指定類型轉換
1 >>> y = int(input()) 2 10 3 >>> type(y) 4 <class 'int'>
2.自動轉換
函數(shù)eval() 用來執(zhí)行一個字符串表達式,并返回表達式的值
eval(expression, globals[ ], locals[ ])
global 和 locals 分別相當于全局和局部變量,eval函數(shù)會優(yōu)先在局部變量存儲空間中檢索
1 >>> y = eval(input()) 2 4.5 3 >>> type(y) 4 <class 'float'>
3.切割轉換
利用函數(shù)split()通過指定分隔符對字符串進行切片。
str.split(str="", num=string.count(str))
str為分割符,包括空格、\n,\t 等 ,num是分割次數(shù)。
感謝各位的閱讀!關于python中input函數(shù)的運行方式就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。