Python 中星号的本质及其使用方式

Asterisks in Python: what they are and how to use them

中文(已无法访问):http://blog.jobbole.com/114655/

中文2:https://blog.csdn.net/iodjSVf8U1J7KYc/article/details/88016637

原文:https://treyhunner.com/2018/10/asterisks-in-python-what-they-are-and-how-to-use-them/

There are a lot of places you’ll see * and ** used in Python. These two operators can be a bit mysterious at times, both for brand new programmers and for folks moving from many other programming languages which may not have completely equivalent operators. I’d like to discuss what those operators are and the many ways they’re used.

The * and ** operators have grown in ability over the years and I’ll be discussing all the ways that you can currently use these operators and noting which uses only work in modern versions of Python. So if you learned * and ** back in the days of Python 2, I’d recommend at least skimming this article because Python 3 has added a lot of new uses for these operators.

If you’re newer to Python and you’re not yet familiar with keyword arguments (a.k.a. named arguments), I’d recommend reading my article on keyword arguments in Python first.

What we’re not talking about

When I discuss * and ** in this article, I’m talking about the * and ** prefix operators, not the infix operators.

So I’m not talking about multiplication and exponentiation:

So what are we talking about?

We’re talking about the * and ** prefix operators, that is the * and ** operators that are used before a variable. For example:

Two of the uses of * are shown in that code and no uses of ** are shown.

This includes:

  1. Using * and ** to pass arguments to a function
  2. Using * and ** to capture arguments passed into a function
  3. Using * to accept keyword-only arguments
  4. Using * to capture items during tuple unpacking
  5. Using * to unpack iterables into a list/tuple
  6. Using ** to unpack dictionaries into other dictionaries

Even if you think you’re familiar with all of these ways of using * and **, I recommend looking at each of the code blocks below to make sure they’re all things you’re familiar with. The Python core developers have continued to add new abilities to these operators over the last few years and it’s easy to overlook some of the newer uses of * and **.

Asterisks for unpacking into function call

When calling a function, the * operator can be used to unpack an iterable into the arguments in the function call:

That print(*fruits) line is passing all of the items in the fruits list into the print function call as separate arguments, without us even needing to know how many arguments are in the list.

The * operator isn’t just syntactic sugar here. This ability of sending in all items in a particular iterable as separate arguments wouldn’t be possible without *, unless the list was a fixed length.

Here’s another example:

Here we’re accepting a list of lists and returning a “transposed” list of lists.

The ** operator does something similar, but with keyword arguments. The ** operator allows us to take a dictionary of key-value pairs and unpack it into keyword arguments in a function call.

From my experience, using ** to unpack keyword arguments into a function call isn’t particularly common. The place I see this most is when practicing inheritance: calls to super() often include both * and **.

Both * and ** can be used multiple times in function calls, as of Python 3.5.

Using * multiple times can sometimes be handy:

Using ** multiple times looks similar:

You need to be careful when using ** multiple times though. Functions in Python can’t have the same keyword argument specified multiple times, so the keys in each dictionary used with **must be distinct or an exception will be raised.

Asterisks for packing arguments given to function

When defining a function, the * operator can be used to capture an unlimited number of positional arguments given to the function. These arguments are captured into a tuple.

This function accepts any number of arguments:

Python’s print and zip functions accept any number of positional arguments. This argument-packing use of * allows us to make our own function which, like print and zip, accept any number of arguments.

The ** operator also has another side to it: we can use ** when defining a function to capture any keyword arguments given to the function into a dictionary:

That ** will capture any keyword arguments we give to this function into a dictionary which will that attributes arguments will reference.

Positional arguments with keyword-only arguments

As of Python 3, we now have a special syntax for accepting keyword-only arguments to functions. Keyword-only arguments are function arguments which can only be specified using the keyword syntax, meaning they cannot be specified positionally.

To accept keyword-only arguments, we can put named arguments after a * usage when defining our function:

The above function can be used like this:

The arguments dictionary and default come after *keys, which means they can only be specified as keyword arguments. If we try to specify them positionally we’ll get an error:

This behavior was introduced to Python through PEP 3102.

Keyword-only arguments without positional arguments

That keyword-only argument feature is cool, but what if you want to require keyword-only arguments without capturing unlimited positional arguments?

Python allows this with a somewhat strange *-on-its-own syntax:

This function accepts an iterable argument, which can be specified positionally (as the first argument) or by its name and a fillvalue argument which is a keyword-only argument. This means we can call with_previous like this:

But not like this:

This function accepts two arguments and one of them, fillvalue must be specified as a keyword argument.

I usually use keyword-only arguments used while capturing any number of positional arguments, but I do sometimes use this * to enforce an argument to only be specified positionally.

Python’s built-in sorted function actually uses this approach. If you look at the help information on sorted you’ll see the following:

There’s an *-on-its-own, right in the documented arguments for sorted.

Asterisks in tuple unpacking

Python 3 also added a new way of using the * operator that is only somewhat related to the *-when-defining-a-function and *-when-calling-a-function features above.

The * operator can also be used in tuple unpacking now:

If you’re wondering “where could I use this in my own code”, take a look at the examples in my article on tuple unpacking in Python. In that article I show how this use of the * operator can sometimes be used as an alternative to sequence slicing.

Usually when I teach * I note that you can only use one * expression in a single multiple assignment call. That’s technically incorrect because it’s possible to use two in a nested unpacking (I talk about nested unpacking in my tuple unpacking article):

I’ve never seen a good use for this though and I don’t think I’d recommend using it even if you found one because it seems a bit cryptic.

The PEP that added this to Python 3.0 is PEP 3132 and it’s not a very long one.

Asterisks in list literals

Python 3.5 introduced a ton of new *-related features through PEP 448. One of the biggest new features is the ability to use * to dump an iterable into a new list.

Say you have a function that takes any sequence and returns a list with the sequence and the reverse of that sequence concatenated together:

This function needs to convert things to lists a couple times in order to concatenate the lists and return the result. In Python 3.5, we can type this instead:

This code removes some needless list calls so our code is both more efficient and more readable.

Here’s another example:

That function returns a new list where the first item in the given list (or other sequence) is moved to the end of the new list.

This use of the * operator is a great way to concatenate iterables of different types together. The * operator works for any iterable, whereas using the + operator only works on particular sequences which have to all be the same type.

This isn’t just limited to creating lists either. We can also dump iterables into new tuples or sets:

Notice that the last line above takes a list and a generator and dumps them into a new set. Before this use of *, there wasn’t previously an easy way to do this in one line of code. There was a way to do this before, but it wasn’t easy to remember or discover:

Double asterisks in dictionary literals

PEP 448 also expanded the abilities of ** by allowing this operator to be used for dumping key/value pairs from one dictionary into a new dictionary:

I wrote another article on how this is now the idiomatic way to merge dictionaries in Python.

This can be used for more than just merging two dictionaries together though.

For example we can copy a dictionary while adding a new value to it:

Or copy/merge dictionaries while overriding particular values:

Python’s asterisks are powerful

Python’s * and ** operators aren’t just syntactic sugar. Some of the things they allow you to do could be achieved through other means, but the alternatives to * and ** tend to be more cumbersome and more resource intensive. And some of the features they provide are simply impossible to achieve without them: for example there’s no way to accept any number of positional arguments to a function without *.

After reading about all the features of * and **, you might be wondering what the names for these odd operators are. Unfortunately, they don’t really have succinct names. I’ve heard * called the “packing” and “unpacking” operator. I’ve also heard it called “splat” (from the Ruby world) and I’ve heard it called simply “star”.

I tend to call these operators “star” and “double star” or “star star”. That doesn’t distinguish them from their infix relatives (multiplication and exponentiation), but context usually makes it obvious whether we’re talking about prefix or infix operators.

If you don’t understand * and ** or you’re concerned about memorizing all of their uses, don’t be! These operators have many uses and memorizing the specific use of each one isn’t as important as getting a feel for when you might be able to reach for these operators. I suggest using this article as a cheat sheet or to making your own cheat sheet to help you use * and ** in Python.

Practice makes perfect

You don’t learn by putting information in your head, you learn by attempting to retrieve information from your head. So you’ve just read an article on something new, but you haven’t learned yet.

Write some code that uses * and ** in a number of different ways today. Then quiz yourself on the many different ways to use * and ** tomorrow!

If you’d like to get practice with * and **, sign up for Python Morsels. The first few problems use * in a couple different ways. If you sign up for Python Morsels I’ll help you level up your Python skills every week.

2 Replies to “Python 中星号的本质及其使用方式”

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注