(seq, start, special="")
| 108 | |
| 109 | # for sorting and making combinations... |
| 110 | def komb(seq, start, special=""): |
| 111 | for mystr in seq: |
| 112 | for mystr1 in start: |
| 113 | yield mystr + special + mystr1 |
| 114 | |
| 115 | |
| 116 | # print list to file counting words |
no outgoing calls
no test coverage detected