파이썬의 반사 기능을 사용하여 파이썬 ‘유형’객체를 문자열로 변환하는 방법이 궁금합니다.
예를 들어, 객체의 유형을 인쇄하고 싶습니다
print "My type is " + type(someObject) # (which obviously doesn't work like this)
답변
print type(someObject).__name__
그것이 당신에게 적합하지 않으면, 이것을 사용하십시오 :
print some_instance.__class__.__name__
예:
class A:
pass
print type(A())
# prints <type 'instance'>
print A().__class__.__name__
# prints A
또한 type()
새 스타일 클래스를 사용할 때와 이전 스타일 (즉,에서 상속 object
) 을 사용할 때 와 다른 점이 있습니다 . 새 스타일 클래스의 type(someObject).__name__
경우 이름을 반환하고 이전 스타일 클래스의 경우을 반환합니다 instance
.
답변
>>> class A(object): pass
>>> e = A()
>>> e
<__main__.A object at 0xb6d464ec>
>>> print type(e)
<class '__main__.A'>
>>> print type(e).__name__
A
>>>
문자열로 변환한다는 것은 무엇을 의미합니까? 자신의 repr 및 str _ 메소드를 정의 할 수 있습니다 .
>>> class A(object):
def __repr__(self):
return 'hei, i am A or B or whatever'
>>> e = A()
>>> e
hei, i am A or B or whatever
>>> str(e)
hei, i am A or B or whatever
또는 나는 모른다.. 설명을 추가하십시오;)
답변
print("My type is %s" % type(someObject)) # the type in python
또는…
print("My type is %s" % type(someObject).__name__) # the object's type (the class you defined)
답변
str () 사용
typeOfOneAsString=str(type(1))
답변
사용하려는 경우 str()
및 사용자 정의 str 메소드. 이것은 repr에도 적용됩니다.
class TypeProxy:
def __init__(self, _type):
self._type = _type
def __call__(self, *args, **kwargs):
return self._type(*args, **kwargs)
def __str__(self):
return self._type.__name__
def __repr__(self):
return "TypeProxy(%s)" % (repr(self._type),)
>>> str(TypeProxy(str))
'str'
>>> str(TypeProxy(type("")))
'str'