질문 : Python 모듈의 모든 함수를 나열하는 방법은 무엇입니까? 내 시스템에 Python 모듈이 설치되어 있으며 어떤 기능 / 클래스 / 메소드를 사용할 수 있는지 확인하고 싶습니다. 각각에 대해 help 기능을 호출하고 싶습니다. ClassName.methods 와 같은 작업을 수행하여 해당 클래스에서 사용할 수있는 모든 메서드 목록을 가져올 수 있습니다. 파이썬에 비슷한 것이 있습니까? 예. 다음과 같이 : from somemodule import foo print(foo.methods) # or whatever is the correct method to call 답변 inspect 모듈 사용 : from inspect import getmembers, isfunction from somemo..