함수 학습 - callable ()

1125 단어 callable

callable(object)


중국어 설명: 대상object가 호출될 수 있는지 확인합니다.True로 돌아가면 object 호출이 실패할 수 있습니다.그러나 False를 반환하면 호출된 객체 ojbect는 절대 성공하지 않습니다.
주의: 클래스는 호출할 수 있으며, 클래스의 실례는 을 실현했다call__() 방법만 호출할 수 있습니다.
버전: 이 함수는python2.x 버전에서 모두 사용할 수 있습니다.하지만python3.0 버전에서 제거되었고python3.2 이후 릴리즈에서 다시 추가됩니다.
설명: Return True if the object argument appears callable, False if not.If this returns true, it is still possible that a call fails, but if it is false, calling object will never succeed. Note that classes are callable (calling a class returns a new instance); class instances are callable if they have a __call__() method.
코드 인스턴스:
>>> callable(0)
False
>>> callable("mystring")
False
>>> def add(a, b):
…     return a + b
…
>>> callable(add)
True
>>> class A:
…      def method(self):
…         return 0
…
>>> callable(A)
True
>>> a = A()
>>> callable(a)
False
>>> class B:
…     def __call__(self):
…         return 0
…
>>> callable(B)
True
>>> b = B()
>>> callable(b)
True

좋은 웹페이지 즐겨찾기