Related problems of functions in Python3

Source: Internet
Author: User

1. Indefinite parameters

2. Default parameters

The value of the default parameter is only assigned once when the function is defined

x =def spam (A, b=x):    print(A, b) spam (#  1# changing the value of x has no effect on the default parameter value # 1

The value of the default parameter should be an immutable object, such as None, True, False, number, or string

def # Error [], {}, etc. as mutable objects

At this point, you can try none as the default value, and then check it in the function, giving the corresponding default value

def spam (A, b=none):    if is none:        = []

Related problems of functions in Python3

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.