연산자 not

(Not에서 넘어옴)
not
!

1 Bash[ | ]

A=1
echo $((A^1))
# 0
B=0
echo $((B^1))
# 1

2 Python[ | ]

print( not True )
print( not False )
# False
# True

3 Ruby[ | ]

puts !true
# false
puts !false
# true

4 같이 보기[ | ]

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