I've searched, but found nothing to help.. This is an example:

    List.txt
    a
    b
    c
    d

I want to be able to get an output like this:

    Output.txt
    ab
    ac
    ad
    ba
    bc
    bd
    ca
    cb
    cd
    etc...
link|improve this question
Can you provide the algorithm/repetition format for exactly what you want done? – chown Oct 19 '11 at 18:37
1  
You will get more help if you show us what you've tried, so people can get a better understanding of where you're getting hung up. – Daniel Nill Oct 19 '11 at 18:39
3  
Is this a Homework problem? If so, you should tag it as such. – Al G Oct 19 '11 at 18:40
feedback

4 Answers

up vote 2 down vote accepted

Pretty straightforward...

from itertools import permutations

with open('List.txt') as f:    
    letters = (l.strip() for l in f if l.strip())    
    for p in permutations(letters, 2):
        print ''.join(p)

Output:

ab
ac
ad
ba
bc
bd
ca
cb
cd
da
db
dc

Some notes:

The with statement ensures the file will be closed when you're done with it.

letters is a generator expression, which in many cases (though not this one) will save you from having to read the entire file in at once.

The uses of l.strip() are meant to nicely handle accidental blank lines if present in input.

itertools.permutations is correct, NOT itertools.combinations which considers ab == ba and will not include the latter as output.

Happy pythoning :)

link|improve this answer
feedback
f = open("List.txt")
lines = f.read().splitlines()
lines_new = []
for line in lines:
    for line2 in lines:
        if not line == line2:
            lines_new.append("%s%s" % (line, line2))

print lines_new # ['ab', 'ac', 'ad', 'ba', 'bc', 'bd', 'ca', 'cb', 'cd', 'da', 'db', 'dc']
open("Output.txt", "w").write("\n".join(lines_new))

Results in a file called Output.txt with:

ab
ac
ad
ba
bc
bd
ca
cb
cd
da
db
dc
link|improve this answer
feedback

The itertools module has combinatoric functions to help with problems like this one:

>>> from itertools import combinations, permutations, product
>>> s = open('list.txt').read().splitlines()
>>> for t in permutations(s, 2):
        print ''.join(t)
link|improve this answer
1  
In this case, you would need itertools.permutations, consider map(''.join, permutations('abcd',2)) vs map(''.join, combinations('abcd',2)) compared to the desired output. – Austin Marshall Oct 19 '11 at 19:14
feedback

You can first read the file into an array:

lines=[]
for line in file:
  lines.append(line)

and then iterate over it to get the desired output.

for line1 in lines:
  for line2 in lines:
    print line1+line2

or print it to a file instead.

link|improve this answer
it's not homework.. just a hobby, and I'm really new at it.. – David Sean Buehler Oct 19 '11 at 18:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.