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 sh
I think this approach is more visual and pythonic.
a = (a + N * [''])[:N]