I have a list of size < N and I want to pad it up to the size N with a value.

Certainly, I can use something like the following, but I feel that there should be something I missed:

>>> N = 5
>>> a = [1]
>>> map(lambda x, y: y if x is None else x, a, ['']*N)
[1, '', '', '', '']

UPD:

Thank you, all.

I decided to with the solution of @gnibbler. To me it looks the most natural in the absence of a built-in.

link|improve this question

Why do you want to do this? There is probably a better way. – katrielalex Aug 9 '10 at 9:34
I serialize the list into a tab-separated string with the fixed number of columns. – newtover Aug 9 '10 at 9:44
Do you mean you are doing something like '\t'.join([1,'','','',''])? Maybe you can tell us more about what you intend to implement, then we can try to come up with a idea. – Satoru.Logic Aug 9 '10 at 10:07
@Satoru.Logic: yes, print >> a_stream, '\t'.join(the_list) is all I want to implement – newtover Aug 9 '10 at 12:47
feedback

5 Answers

up vote 6 down vote accepted
a+=['']*(N-len(a))

or if you don't want to change a in place

new_a = a+['']*(N-len(a))

you can always create a subclass of list and call the method whatever you please

N=5
class MyList(list):
    def ljust(self, n, fillvalue=''):
        return self+[fillvalue]*(N-len(self))

a=MyList(['1'])
b=a.ljust(5, '')
link|improve this answer
This looks much better, but I still expect something like a fill or pad method or function =) – newtover Aug 9 '10 at 9:47
I do want to change in place. The former is great. I'll go with that, thank you. – newtover Aug 9 '10 at 12:49
feedback

You could also use a simple generator without any build ins. But I would not pad the list, but let the application logic deal with an empty list.

Anyhow, iterator without buildins

def pad(iterable, padding='.', length=7):
    '''
    >>> iterable = [1,2,3]
    >>> list(pad(iterable))
    [1, 2, 3, '.', '.', '.', '.']
    '''
    for count, i in enumerate(iterable):
        yield i
    while count < length - 1:
        count += 1
        yield padding

if __name__ == '__main__':
    import doctest
    doctest.testmod()
link|improve this answer
feedback

gnibbler's answer is nicer, but if you need a builtin, you could use itertools.izip_longest (zip_longest in Py3k):

itertools.izip_longest( xrange( N ), list )

which will return a list of tuples ( i, list[ i ] ) filled-in to None. If you need to get rid of the counter, do something like:

map( itertools.itemgetter( 1 ), itertools.izip_longest( xrange( N ), list ) )
link|improve this answer
I knew about izip_longest but resulting the code does not look nice =) – newtover Aug 9 '10 at 12:24
feedback

There is no built-in function for this. But you could compose the built-ins for your task (or anything :p).

(Modified from itertool's padnone and take recipes)

from itertools import chain, repeat, islice

def pad_infinite(iterable, padding=None):
   return chain(iterable, repeat(padding))

def pad(iterable, size, padding=None):
   return islice(pad_infinite(iterable, padding), size)

Usage:

>>> list(pad([1,2,3], 7, ''))
[1, 2, 3, '', '', '', '']
link|improve this answer
feedback

If you want to pad with None instead of '', map() does the job:

>>> map(None,[1,2,3],xrange(7))

[(1, 0), (2, 1), (3, 2), (None, 3), (None, 4), (None, 5), (None, 6)]

>>> zip(*map(None,[1,2,3],xrange(7)))[0]

(1, 2, 3, None, None, None, None)
link|improve this answer
To say frankly, a+['']*(N-len(a)) looks much clearer. Besides, it lacks casting to list. But thank you anyway. – newtover Jan 6 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

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