-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInheritance.py
62 lines (58 loc) · 1.02 KB
/
Inheritance.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# class Animal:
# def __init__(self, name, age=0):
# self.name = name
# self.age = age
#
# def speak(self):
# return "I speak"
#
#
# class Dog(Animal):
# def __init__(self, name, type):
# super().__init__(name)
# self.type = type
#
# pass
#
#
# class Cat(Animal):
# def __init__(self, name, type_):
# super().__init__(name)
# self.type = type_
#
# pass
#
#
# # class Bingo
#
# dog = Dog("Bingo", "local")
# cat = Cat("petty", "white")
#
# # bingo = Bingo("Bingo")
# print(dog.name, dog.type, dog.age)
# print(cat.name, cat.type)
# # print(dog.)
# help(dog)
#
# import abc
#
#
# class A(abc.ABC):
#
# @abc.abstractmethod
# def must_be_implement(self):
# return
#
#
# class B(A):
#
# def must_be_implement(self):
# print("Hello")
# class YourMoneyNoReachError(Exception):
#
# def __init__(self, message="") -> None:
# super().__init__(message)
#
#
# raise YourMoneyNoReachError("Hello")
from typing import List