본문 바로가기
파이썬

파이썬 내 파이썬 객체가 숫자인지 어떻게 확인할 수 있습니까?

by º기록 2020. 10. 23.
반응형

Java에서 숫자 유형은 모두 Number의 자손이므로

(x instanceof Number).

파이썬에 상응하는 것은 무엇입니까?

 

해결 방법

 


>>> import numbers
>>> import decimal
>>> [isinstance(x, numbers.Number) for x in (0, 0.0, 0j, decimal.Decimal(0))]
[True, True, True, True]




 

참조 페이지 https://stackoverflow.com/questions/4187185

 

 

반응형

댓글