Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list in Python. I don't know exactly how long it is, but I know it's less than 15 items long.

I want to pad it out to exactly 15 items long, appending empty strings for all the items that I need to add.

Is there an efficient way to do this in Python?

I was hoping:

myarr = myarr[:15]

might work, but it doesn't.

Currently I have:

if len(myarr) < 15:
    for i in range(15 - len(myarr)):
        myarr.append('')

Any more compact suggestions?

share|improve this question
you could write a custom class that acts like a list with padding. – Karoly Horvath Nov 7 '11 at 19:03

3 Answers

up vote 6 down vote accepted
myarr += [""] * (15 - len(myarr))
share|improve this answer
3  
+1. This also doesn't need the test for len(myarr) < 15 because the * repetition operator returns an empty list for a negative repetition count. – Greg Hewgill Nov 7 '11 at 19:05
note that this works because strings are immutable. – Karoly Horvath Nov 7 '11 at 19:08
Perfect - compact and straightforward, just what I was looking for! thanks! – Richard Nov 7 '11 at 19:25

in a oneliner way :

myarr.extend([""]* (15 - len(myarr)))
share|improve this answer

To use pure slicing (no call to len):

padded = (source + ['']*MAX_LEN)[:MAX_LEN]

If this is called many times, then initialize an ALL_EMPTY list once at module scope. Then do:

padded = (source + ALL_EMPTY)[:MAX_LEN]
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.