In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces python how to achieve parameter decompression, the article introduces in great detail, has a certain reference value, interested friends must read it!
Parametric decompression
Sometimes called the Splat or Scatter operator *, they work when you need to decompress the parameters in the list / tuple for function calls that require separate positional arguments.
For example, the built-in range () function requires separate start and stop parameters. When writing function calls, you can use the * operator to unpack parameters from a list or tuple:
Let's define a simple list x = [1, 2, 3, 4, 5]
A common example of a unpacking operator is the use of print:
Print (* x) / / Result: 1 2 3 4 5
All you have to do is print out each element in the list, separated by spaces, because the unpack operator accepts all the elements in the list and passes them as parameters, so the transformation of the above code will be printed out (1 meme 2 meme 3 pencils 4 5).
This Python technique is often used in functions to "package" all the parameters received by a method call into a variable.
For example:
The above function func can accept an unlimited number of arguments (args [0] and args [1] will provide you with the first and second arguments, respectively).
In a similar manner, dictionaries can use the * operator to pass keyword parameters.
Let's define a Python dictionary named person:
Person = {"name": "Paul", "age": 23, "location": "London"}
You can use the * operator to pass the dictionary to the function.
The incoming dictionary decomposes the key into a function keyword parameter and then takes that value as the actual value passed for that parameter.
For example:
These are all the contents of the article "how to decompress parameters in python". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.