Python Class – A Complete Example

 Python Class – A Complete Example:

Explanation of the Below Code:

- We create a class with the init method.

- We create a bucket-named class.

- We create a totalfruits-named class variable.

- Then we define the init method with the selfname, and color parameters, then create some instance variable for each parameters, then call the totalfruits class variable using the bucket-named class which is adding on every found fruit.

- Then we define the fruits method with the self-parameterswe take the instance variables in the print function which returns the instance variable value with the given string (separate with a comma).

- Then we create the apple and banana-named instances(objects) with two arguments (separate with a comma) of the bucket class.

- Then we call the fruits method using the apple and banana-named instances(objects).

- Then we call the totalfruits class variable using the bucket-named class in the print function which returns the total number of found fruits in the bucket class with the given string (separate with a comma).

Comments