Syntax for different versions of inheritance in Python's parent and child classes

Source: Internet
Author: User

1Python 2inheritance in. 72In Python 2. 7, the inheritance syntax is slightly different, and the definition of the Electriccar class is similar to the following:3 classCar (object):4     def __init__(self, make, model,year):5--snip--6 7 classElectriccar (Car):8     def __init__(self, make, model,year):9         Super (Electriccar, self). __init__ (make, model, year) Ten--snip-- OneThe function super () requires two arguments: a subclass name and an object self. These arguments are necessary to help Python associate the parent and child classes. Other than thatin Python 2 when using inheritance in. 7, be sure to specify object within parentheses when defining the parent class .  A  - inheritance in Python 3 - classCar (): the     def __init__(self, make, model,year): ---snip-- -  - classElectriccar (Car): +     def __init__(self, make, model,year): -     " "Initialize the properties of the parent class" " +         super (). __init__ (make, model, year)  A--snip--

Syntax for different versions of inheritance in Python's parent and child classes

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.