Pythhon: 객체 가져오기 메소드 목록
1766 단어 Python
print type(obj)
for x in inspect.getmembers(obj, inspect.ismethod):
print x[0]
출력 예<class 'nfc.tag.tt3_sony.FelicaStandard'>
__init__
__str__
_format
_is_present
authenticate
dump
dump_service
format
polling
protect
read_from_ndef_service
read_without_encryption
request_response
request_service
request_system_code
search_service_code
send_cmd_recv_rsp
write_to_ndef_service
write_without_encryption
dir를 사용한 방법도 댓글에 소개됐다.for x in dir(obj):
print x, ':', type(eval("obj."+x))
끝까지 읽어주셔서 감사합니다.트위터에도 Qita에서 쓰지 않는 기술 문구가 있으니 편리하면 주목해 주세요.→ Twitter@suin
Reference
이 문제에 관하여(Pythhon: 객체 가져오기 메소드 목록), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/suin/items/b15f908aaf8023a8a1fc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)