Answers for "oops in python"

1

real python oop

>>> class Dog:
...     pass
...
>>> a = Dog()
>>> type(a)
<class '__main__.Dog'>
Posted by: Guest on June-20-2020
3

python how to use oop

#Object oriented programming is when you create your own custom class.
#One reason you should do this is that is saves you time.
#Another reason is it makes calling certain functions easier with tkinter

class Dog:
  #init creates certain parameters that allow you to define information quickly.
  def __init__(self, name):
    self.name = name
    
  def get_name(self):
	return self.name
    
if __name__ == "__main__":
  d = Dog(str(input("name your dog: "))
  print(d.get_name())
Posted by: Guest on June-17-2020
0

oops in python

class Dog:
    def __init__(self, name, age):
        self.name = name
        self.age = age
Posted by: Guest on August-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language