Default parameters in Python

Source: Internet
Author: User

defExtendlist (Val, test=[]): Test.append (val)returnTestlist1= Extendlist (10) List2= Extendlist (123, []) List3= Extendlist ('a')Print("List1 =%s"%List1)Print("List2 =%s"%list2)Print("list3 =%s"% list3)
Operation Result:
List1 = [Ten, ' a ']
List2 = [123]
LIST3 = [Ten, ' a ']

As the above code runs the result, when I began to learn python, I would also think that List1 should output a 10,list3, but it is not, in a method default parameter is test=[], when the method is called, when there is no value for its passing time, As List1 and List3 show, the test in both of the methods they invoke corresponds to the list in the same address space, so the output will be so.

We can avoid this problem by the following ways:

def Extendlist (Val, test=None):    if test = = None        := []    Test.append (val)    return test

Default parameters in 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.