Answers for "constructor python variables"

1

constructor python variables

class DemoClass:
    num = 101 # default value of self.num when read_number method called

    # parameterized constructor
    def __init__(self, data):
        self.num = data

    # a method
    def read_number(self):
        print(self.num)
Posted by: Guest on March-11-2021

Code answers related to "constructor python variables"

Python Answers by Framework

Browse Popular Code Answers by Language