Sorting and alligning the contents of a text file in Python
Posted
by Emily Price
on Stack Overflow
See other posts from Stack Overflow
or by Emily Price
Published on 2010-03-27T10:06:15Z
Indexed on
2010/03/27
10:13 UTC
Read the original article
Hit count: 179
python
Hello
In my program I have a text file that I read from and write to. However, I would like to display the contents of the text file in an alligned and sorted manner. The contents currently read-
name, score
name, score
Would I have to convert this information into lists in order to be able to do this? If so, how do I go about doing this?
Thankyou
© Stack Overflow or respective owner