연산자 and

Jmnote (토론 | 기여)님의 2014년 7월 7일 (월) 16:14 판 (Jmnote 사용자가 And 문서를 연산자 and 문서로 옮겼습니다)
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 }}