在Python中查找txt文件列中的最大值

时间:2017-12-05 16:59:13

标签: python max

我试图在python中找到txt文件列中的最大值。到目前为止,我有这段代码:

    file=open('3human_evolution.txt','r')
    lines=file.readlines()
    pos=lines[0].find('Adult')
    print(pos)

这给出了我想要计数的列的位置。我知道我必须剥离或拆分每一行,然后将值附加到一个新列表,但我不确定如何执行此操作。

    Species              Lived when      Adult        Adult       Brain volume 

    -------------------------------------------------------------------------------
    H. habilis           2.2 - 1.6       1.0 - 1.5    33 - 55     660
    H. erectus           1.4 - 0.2                    60          850 (early) - 1100 (late)
    H. ergaster          1.9 - 1.4       1.9                      700 - 850
    H. heidelbergensis   0.6 - 0.35      1.8          60          1100 - 1400
    H. neanderthalensis  0.35 - 0.03     1.6          55 - 70     1200 - 1700
    H. sapiens sapiens   0.2 - present   1.4 - 1.9    50 - 100    1000 - 1850
    H. floresiensis      0.10 - 0.012    1.0          25          400
    -------------------------------------------------------------------------------

0 个答案:

没有答案