Answers for "instance object python"

4

what is a ython instance

An object belonging to a class. e.g. if you had an Employee class, each 
individual employee would be an instance of the Employee class
Posted by: Guest on August-13-2020
22

how to make a class in python

class Person:
  def __init__(self, _name, _age):
    self.name = _name
    self.age = _age
   
  def sayHi(self):
    print('Hello, my name is ' + self.name + ' and I am ' + self.age + ' years old!')
    
p1 = Person('Bob', 25)
p1.sayHi() # Prints: Hello, my name is Bob and I am 25 years old!
Posted by: Guest on November-17-2019
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

python instance Object

x.counter = 1
while x.counter < 10:
    x.counter = x.counter * 2
print(x.counter)
del x.counter


#https://docs.python.org/3.8/tutorial/classes.html#class-objects
Posted by: Guest on May-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language