"연산자 and"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
;and
;and
;&&
;&&
==Python==
[[category: Python]]
<source lang='Python'>
print True and True
print True and False
print False and True
print False and False
# True
# False
# False
# False
</source>


==Ruby==
==Ruby==

2014년 7월 7일 (월) 16:12 판

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