Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Perhaps

vector(SR,[1]*10)

is worth mentioning as well. Here, [1]*10 is just the Python way of constructing a list with 10 repeats of 1.

PerhapsFor the follow-up question posted as a comment to @tmonteil's answer:

vector(SR,[1]*10)
vector(SR, [1]*10)

is worth mentioning as well. Here, [1]*10 is just the Python way of of constructing a list with 10 repeats of 1.