色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

python如何在多行數據中提取一行

江奕云2年前47瀏覽0評論

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.

java中對list遍歷,python如何在多行數據中提取一行