The init Method

Source: Internet
Author: User

The init method is a special method that gets invoked when an object is instantiated. its full name is _ init _ (two underscore characters, followed byinit, and then two more underscores ). an init method for the time class might look like:

def __init__(self,hour=0,minute=0,second=0):        self.hour = hour        self.minute = minute        self.second = second

It is common for the parameters of _ init _ to have the same names as the attributes. the parameters are optional, So if you call time with no arguments, you get the default values. if you provide one argument, it overrides hour. if you provide two arguments, they override hour and minute. and if you provide three arguments, they override all three default values.

 

 

From Thinking in Python

The init Method

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.