有乙個數字字元的列表:
numbers = ['1', '
5', '
10', '
8']
想要把每個元素轉換為數字:
numbers = [1, 5, 10, 8]
用乙個迴圈來解決:
new_numbers =;for n in
numbers:
int(n));
numbers = new_numbers;
有沒有更簡單的語句可以做到呢?
1.
numbers = [ int(x) for x in numbers ]
2. python2.x,可以使用map函式
numbers = map(int, numbers)
如果是3.x,map返回的是map物件,當然也可以轉換為list:
numbers = list(map(int, numbers))
3.還有一種比較複雜點:
for i, v inenumerate(numbers):
numbers[i] = int(v)
**
Python 列表轉字串
問題描述 對於長度為5位的乙個01串,每一位都可能是0或1,一共有32種可能。它們的前幾個是 請按從小到大的順序輸出這32種01串。輸入格式 本試題沒有輸入。輸出格式 輸出32行,按從小到大的順序每行乙個長度為5的01串。樣例輸出 00000 00001 00010 00011 以下部分省略 實現 ...
Python 字串轉浮點型,列表轉字串
爬蟲過程中,採集的資料常以str或float存入資料庫 遇到含小數點的文字,需要轉換成浮點型xpath 或re.findall 提取資訊返回列表,列表可能為空,不便存進資料庫。a float 1.21 print a import numpy as np ls 1.2 3 0.5 array np....
Python 字串轉列表,列表轉字串
一般計算字串的數量,用len 方法就能實現,例如 str string len str 6 s,t,r,i,n,g 但是,當要計算單詞的數量時,該怎麼辦?sentence hello world and python len sentence 24 問題 一段訊息裡面的單詞數計數。寫乙個函式,當單詞...