함수 bool()

Jmnote (토론 | 기여)님의 2014년 8월 20일 (수) 17:26 판 (새 문서: ;함수 bool ==Python== category: Python <source lang='Python'> print( bool(2) ) print( bool(1) ) print( bool(0) ) print( bool(-1) ) print( bool(-2) ) # True # True # False # Tru...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
함수 bool

Python

print( bool(2) )
print( bool(1) )
print( bool(0) )
print( bool(-1) )
print( bool(-2) )
# True
# True
# False
# True
# True
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}