object()

object() 함수는 빈 객체 (empty object)를 반환합니다.



예제

a = object()

print(a)
print(type(a))
print(dir(a))
<object object at 0x7f4c077af4f0>
<class 'object'>
['__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']

object()함수를 이용해서 빈 객체 a를 만들었습니다.

type() 함수를 이용해서 자료형을 확인할 수 있습니다.

dir() 함수를 이용하면 객체의 모든 속성과 메서드를 확인할 수 있습니다.



이전글/다음글

이전글 :
다음글 :