모듈로 클래스 다형성 적용
파일로 다형성 만들기 파일 경로 test.py class Hello: def __init__(self): pass @staticmethod def hello(): print("hello my test") employees.py class Hello: def __init__(self): pass @staticmethod def hello(): print("hello my employees") main.py import importlib
NULL
2021-11-22
0 0