본문 바로가기

분류 전체보기63

[Python] 연산자(Operators) - (5) 식별 연산자 개요 파이썬 연산자는 다음과 같습니다. 산술 연산자(Arithmetic Operators) 할당 연산자(Assignment Operators) 비교 연산자(Comparison Operators) 논리 연산자(Logical Operators) 식별 연산자(Identity Operators) 멤버 연산자(Membership Operators) 비트 연산자(Bitwise Operators) 식별 연산자 is 같은 객체인지 확인 비교 연산자 == 와는 완전히 다릅니다. x is y is not 같은 객체가 아닌지 확인 x is not y 객체의 고윳값 id 같은 객체라면 같은 id값을 가지게 됩니다. 아래의 예제는 같은 숫자 상수를 참조하는 변수 a, b에 대한 코드입니다. 아래의 id값은 실행할 때마다 달라질.. 2023. 5. 31.
[Python] 연산자(Operators) - (4) 논리 연산자 개요 파이썬 연산자는 다음과 같습니다. 산술 연산자(Arithmetic Operators) 할당 연산자(Assignment Operators) 비교 연산자(Comparison Operators) 논리 연산자(Logical Operators) 식별 연산자(Identity Operators) 멤버 연산자(Membership Operators) 비트 연산자(Bitwise Operators) 논리 연산자 and AND 연산 x 2023. 5. 31.
[Python] 연산자(Operators) - (3) 비교 연산자 개요 파이썬 연산자는 다음과 같습니다. 산술 연산자(Arithmetic Operators) 할당 연산자(Assignment Operators) 비교 연산자(Comparison Operators) 논리 연산자(Logical Operators) 식별 연산자(Identity Operators) 멤버 연산자(Membership Operators) 비트 연산자(Bitwise Operators) 비교 연산자 == 값이 같다 x == y != 값이 다르다 x != y > 왼쪽 값이 크다 x > y = y 2023. 5. 31.
[Python] 연산자(Operators) - (2) 할당 연산자 개요 파이썬 연산자는 다음과 같습니다. 산술 연산자(Arithmetic Operators) 할당 연산자(Assignment Operators) 비교 연산자(Comparison Operators) 논리 연산자(Logical Operators) 식별 연산자(Identity Operators) 멤버 연산자(Membership Operators) 비트 연산자(Bitwise Operators) 할당 연산자 = x = 5 += x += 3 -= x -= 3 *= x *= 3 /= x /= 3 %= x %= 3 //= x //= 3 **= x **= 3 &= x &= 3 |= x |= 3 ^= x ^= 3 >>= x >>= 3 2023. 5. 31.
[Python] 연산자(Operators) - (1) 산술 연산자 개요 파이썬 연산자는 다음과 같습니다. 산술 연산자(Arithmetic Operators) 할당 연산자(Assignment Operators) 비교 연산자(Comparison Operators) 논리 연산자(Logical Operators) 식별 연산자(Identity Operators) 멤버 연산자(Membership Operators) 비트 연산자(Bitwise Operators) 산술 연산자 + 덧셈 x + y - 뺄셈 x - y * 곱셈 x * y / 나눗셈 x / y % 나머지 연산 x % y ** 제곱 연산 x ** y // 몫 연산 x // y 참고자료 https://www.w3schools.com/python/python_operators.asp https://wikidocs.net/1153 2023. 5. 31.