可能重複:
Making a flat list out of list of lists in PythonPython的 - 改變一個列表
我有這樣一個清單:
[['22', '14']]
我怎樣才能把它轉換爲:
[22, 14]
謝謝。
可能重複:
Making a flat list out of list of lists in PythonPython的 - 改變一個列表
我有這樣一個清單:
[['22', '14']]
我怎樣才能把它轉換爲:
[22, 14]
謝謝。
L = [['22', '14']]
M = [ int(i) for i in L[0] ]
a = [['22','14']]
map(int, a[0])
>>> lis=[['22', '14']]
>>> map(int,sum(lis,[]))
[22, 14]
http://stackoverflow.com/questions/952914/making-a-flat-list-out-of-list-of-lists-in-python – avasal