Answers for "how to create instance method in python"

4

instance variable in python

class Car:    wheels = 4    # <- Class variable    def __init__(self, name):        self.name = name    # <- Instance variable
Posted by: Guest on August-12-2020
1

instance method in python

# Instance Method Example in Python 
class Student:
    
    def __init__(self, a, b):
        self.a = a
        self.b = b 
    
    def avg(self):
        return (self.a + self.b) / 2

s1 = Student(10, 20)
print( s1.avg() )
Posted by: Guest on August-12-2020
0

instance method python

class MyClass:
    def method(self):
        return 'instance method called', self

    @classmethod
    def classmethod(cls):
        return 'class method called', cls

    @staticmethod
    def staticmethod():
        return 'static method called'
Posted by: Guest on September-09-2021

Code answers related to "how to create instance method in python"

Python Answers by Framework

Browse Popular Code Answers by Language