for seqA in poolA:
print seqA + ":",
for i in seqA:
print complements[i],
print
complements is a dict and poolA is a list.
When I print complements[i] there are spaces in between, how do I remove these spaces?
When I |
||||
|
|
|
Join the items and print the resulting string.
|
|||
|
|
|
Well, just don't print them out. Use either |
|||
|
|