연산자 and

Jmnote (토론 | 기여)님의 2014년 8월 20일 (수) 14:25 판 (→‎Python)
and
&&

1 Python

print( True and True )
print( True and False )
print( False and True )
print( False and False )
# True
# False
# False
# False

2 Ruby

puts true && true
# true
puts true && false
# false
puts false && true
# false
puts false && false
# false

3 같이 보기

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