What is the correct name for operator *, as in function(*args)? unpack, unzip, something else?
|
|
closed as not constructive by George Stocker♦ Aug 28 '12 at 13:12
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
In Ruby and Perl 6 this has been called "splat", and I think most people from those communities will figure out what you mean if you call it that. The Python tutorial uses the phrase "unpacking argument lists", which is long and descriptive. I haven't heard any other particular name for it in Python. |
|||||||||||||||||||||
|
|
I call it "positional expansion", as opposed to |
|||
|
|
|
I say "star-args" and Python people seem to know what i mean.
|
|||||
|
|
The Python Tutorial is simply calls it 'the |
|||
|
|
|
One can also call As seen here: Think Python/Tuples/Variable-length argument tuples. |
|||
|
|
|
I believe it's most commonly called the "splat operator." Unpacking arguments is what is does. |
|||
|
|