python如何在多行數據中提取一行?
拋磚一下。
1)可以將 list 看作一個 array,通過下表來取。
# If you have known the index l = [1,2,3,4] print l[0] # output 1 2)視 list 是一個容器,用for循環來取 l = ['1', '12', '3', '4'] for e in l: if e.startswith('1'): print e # here '1' and '12' will be printed.