is 와 is not 은 객체를 비교 == 와 != 는 값만 비교
1 == 1.0 -> True 1 != 1.0 -> False 1 is 1.0 -> False 1 is not 1.0 -> True