print formate

Larry Bates larry.bates at websafe.com
Fri May 5 17:01:55 EDT 2006



Gary Wessle wrote:
> Hi
> 
> 
> import string
> import re
> accumulator = []
> 
> pattern = '(\S*)\s*(\S*)\s*(\S*)'
> for each text file in dir
>     openfile and read into text
>     data = re.compile(pattern, re.IGNORECASE).findall(text)
>     accumulator = accumulator + data
> gives a list of tuples which when printed looks like
> ('jack', 'bony', 'J')
> ('sam', 'lee', 'S')
> ...
> 
> how can I get the output in the formate
> jack bony J
> sam lee S
> ...
> 
> 
> thank you

for entry in list_of_tuples:
    print ' '.join(entry)

-Larry Bates



More information about the Python-list mailing list