print formate

G

Gary Wessle

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
 
L

Larry Bates

Gary said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top