not ! 목차 1 Bash 2 Python 3 Ruby 4 같이 보기 Bash A=1 echo $((A^1)) # 0 B=0 echo $((B^1)) # 1 Python print( not True ) print( not False ) # False # True Ruby puts !true # false puts !false # true 같이 보기 and or 비트연산 NOT !=