python

Demo

class Demo:

    def __init__(self):
        
        self.a = 10
        self.b = 20

    def get_total_of_a_b:
        
        total = self.a + self.b
        return total
Was this helpful?