프로그래밍/Python
[Python] 특정 자료형의 내장함수 찾는 방법 - dir() 함수
참고 : Python에서 내장함수란 별도로 import 할 필요 없이 사용할 수 있는 함수를 의미합니다. >>> print(dir("hello world")) ['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__..