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...
|
I've searched, but found nothing to help.. This is an example:
I want to be able to get an output like this:
| |||||||||||
feedback
|
|
Pretty straightforward...
Output:
Some notes: The
The uses of
Happy pythoning :) | |||
|
feedback
|
Results in a file called Output.txt with:
| |||
|
feedback
|
|
The itertools module has combinatoric functions to help with problems like this one:
| |||||
feedback
|
|
You can first read the file into an array:
and then iterate over it to get the desired output.
or print it to a file instead. | |||
feedback
|