*args and **kwargs basic usage of Python

Source: Internet
Author: User

*args represents any number of nameless parameters, which is a tuple

**kwargs: The dictionary passed in, such as: A=1, passed in the key value, the default is passed into **kwargs, such as the following code:

classFOO:def __init__(self):Pass    def __call__(self,*args,**Kwargs):Print "__call__"         forValueinchArgs#Show content directly            Print "Anther,args:", ValuePrintU"here's how to do the cumulative count"        PrintSum (args) +sum (Kwargs.values ())#do accumulateobj=FOO () obj (1,2,3,a=1)#args as a list of accommodated variables

Shown as:

You can see that in the A=1, the default is passed in to args, and it is passed into **kwargs, and 7 is the result of 1+2+3+1.

*args and **kwargs basic usage of Python

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.