Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question

2 Answers

Join the items and print the resulting string.

print ''.join(str(complements[i]) for i in seqA)
share|improve this answer

Well, just don't print them out. Use either from __future__ import print_function and then print(complements[i], end = ''), or sys.stdout.write(complements[i]).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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