Note the usage of function default values in python. Default Value in python

Source: Internet
Author: User

Note the usage of function default values in python. Default Value in python

When the default value is defined in the function, the value Initialization is performed only once, that is, when def methodname is executed. See the following code:

12345678 from datetime import datetime def test(t=datetime.today()):  print t if __name__ == "__main__":  test()  test()

The output time of the two method calls is the same value, rather than the current execution time. In this case, we recommend that you use the following method:

from datetime import datetime  def test2(t = None):    if t is None:        t = datetime.today()    print t if __name__ == "__main__":    test()    test()

  

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.