<p><br>
On Feb 20, 2014 11:25 AM, "kxjakkk" <<a href="mailto:kjakupak@gmail.com">kjakupak@gmail.com</a>> wrote:<br>
><br>
> Let's say I have a sample file like this:<br>
><br>
> Name        1           2     3    4     5      6     7    8<br>
> ------------------------------------------------------------------------<br>
> name1    099-66-7871   A-F    Y    100    67    81    59    98<br>
> name2    999-88-7766   A-F    N    99   100    96    91    90<br>
> name3    000-00-0110    AUD        5    100    28    19    76<br>
> name4    398-72-3333    P/F    Y    76    84    49    69    78<br>
> name5    909-37-3689    A-F    Y    97    94    100    61    79<br>
><br>
> For name1, I want to add together columns 4, 5, 6, and get an average from that, then do the same for the last two columns. I want to do this for every name.<br>
><br>
> All I've got is<br>
> sum([int(s.strip()) for s in open('file').readlines()])<br>
> --</p>
<p>Use split() on each line. Do the math<br>
> <a href="https://mail.python.org/mailman/listinfo/python-list">https://mail.python.org/mailman/listinfo/python-list</a></p>