Could anyone here tell me how to properly append series of missing values onto a python list?
for example,
> ls=[1,2,3]
> ls += []*2
> ls
[1,2,3]
but this is not the outcome I want. I want:
[1,2,3, , ]
where the blanks denotes for the missing values.
(note: also what I DON'T want is:
> ls
[1,2,3,'','']
)
Thanks,