Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Instance Method In Python

class Const: 
    def __init__(self, firstName, lastName):
        self.firstName = firstName
    def hello(self):
        print("hello world this is my sentence")


c = Const("hello", "world")
print(c.firstName)
c.hello()
 
PREVIOUS NEXT
Tagged: #Instance #Method #In #Python
ADD COMMENT
Topic
Name
3+1 =