function to create class python code example
Example 1: python class
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("barry", 50)
p1.myfunc()
Example 2: class and object in python
class PartyAnimal:
def Party():
an=PartyAnimal()
an.Party()
Example 3: class python example
def ok(index):
print(index) > Hi!
ok("Hi!")
class Lib:
def ok(self,Token):
print(Token) > Hello World!
Library = Lib()
Library.ok("Hello World!")