您好,登錄后才能下訂單哦!
這篇文章主要介紹python將字符串轉(zhuǎn)換為數(shù)字的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
python如何將列表中的字符串轉(zhuǎn)為數(shù)字?具體方法如下:
有一個(gè)數(shù)字字符的列表:
numbers = ['1', '5', '10', '8']
想要把每個(gè)元素轉(zhuǎn)換為數(shù)字:
numbers = [1, 5, 10, 8]
用一個(gè)循環(huán)來(lái)解決:
new_numbers = []; for n in numbers: new_numbers.append(int(n)); numbers = new_numbers;
有沒(méi)有更簡(jiǎn)單的語(yǔ)句可以做到呢?
1、遍歷
numbers = [ int(x) for x in numbers ]
2、Python2.x,可以使用map函數(shù)
numbers = map(int, numbers)
如果是3.x,map返回的是map對(duì)象,當(dāng)然也可以轉(zhuǎn)換為L(zhǎng)ist:
numbers = list(map(int, numbers))
3、還有一種比較復(fù)雜點(diǎn):
for i,v in enumerate(numbers): numbers[i] = int(v)
以上是python將字符串轉(zhuǎn)換為數(shù)字的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。