"함수 bool()"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 함수 bool 문서를 함수 bool() 문서로 옮겼습니다)
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 2개는 보이지 않습니다)
3번째 줄: 3번째 줄:
==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
print( bool(2) )
print( bool(2) )
print( bool(1) )
print( bool(1) )
14번째 줄: 14번째 줄:
# True
# True
# True
# True
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[boolean]]
*[[함수 is_bool()]]
*[[불리언]]

2020년 11월 2일 (월) 02:32 기준 최신판

함수 bool

1 Python[ | ]

print( bool(2) )
print( bool(1) )
print( bool(0) )
print( bool(-1) )
print( bool(-2) )
# True
# True
# False
# True
# True

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}