class Length: def __init__(self, value): self.length = value def __eq__(self, other): isLength = isinstance(other, self.__class__) if not isLength: return False if self.length == other.length: return True else: return False len1 = Length(10) len2 = Length(10) result1 = ...
res. data는 출력으로 -4를 제공합니다. 예제 코드: # Python 3.x class Data: def __init__(self, data): self.data = data def __invert__(self): return Data(~self.data) x = Data(3) res = ~x print(res.data) 출력: #Python 3.x -4 작...
<파이썬 머신러닝 완벽 가이드> p.174 def get_clf_eval(y_test, pred=None, pred_proba=None): confusion = confusion_matrix( y_test, pred) accuracy = accuracy_score(y_test , pred) precision = precision_score(y_test , pred) recall = recall_score(y_test , pred)...
P CLASS 감지하여 smi 파일 내 언어를 자동으로 추출하고, 언어별로 변환된 결과를 저장. 예) aaa.smi -> aaa.kr.srt, aaa.en.srt, aaa.es.srt 따로 language 옵션 지정 안해도 되도록 변경 suffix option 삭제...
4 Flask App 5 6 7 Home 8 About 9 10 11 12 13 ... 다시 한번, 플라스크 함수인url_for을 사용해서 URL을 만들겠습니다. 그리고main.css에 코드를 추가해서 네
def create_ball_class(): def init(self, color): self.color = color def getColor(self): return self.color return type( "Ball", (object,), { "__init__": init, "getColor": getColor, }, ) Ball = create_ball_class() ballObj = Ball("green") print(ballObj.getColor()) ...
name = name print("Student Created:", name) def person_type(self): print("Student") class Teacher(Person): def __init__(self, name): self.name = name print("Teacher Created:", name) def person_type(self): print("Teacher") class PersonFactory: @staticmethod def build_person(person_...
classNode1:def__init__(self):self.val=0self.right=None self.left=None 여기서 주목해야 할 중요한 점은 C에서NULL이 작동하는 방식과 달리 Python의None키워드는 아무 것도 가리키는 포인터가 아니라 단순히NoneT...
computeData()) except Exception as e: print("Exception at method_to_test: " + str(e)) class Test(unittest.TestCase): @patch.object(A, "computeData", MagicMock(side_effect=Exception("Test"))) def test_method(self): B.method_to_test() if __name__ == "__main__": Test().test...
class A: def __init__(self, a): self.a = a def __add__(self, o): return self.a + o.a + 2 ob1 = A(5) ob2 = A(4) print(ob1 + ob2) 출력:11 위의 예에서는 A 클래스의 매직 함수를 수정하고 결과에 2를 추가하...