함수 bool()

함수 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 }}