개요
파이썬 연산자는 다음과 같습니다.
- 산술 연산자(Arithmetic Operators)
- 할당 연산자(Assignment Operators)
- 비교 연산자(Comparison Operators)
- 논리 연산자(Logical Operators)
- 식별 연산자(Identity Operators)
- 멤버 연산자(Membership Operators)
- 비트 연산자(Bitwise Operators)
멤버 연산자
in | x값이 y객체에 포함되어 있으면 True | x in y |
not in | x값이 y객체에 포함되어 있지 않으면 True | x not in y |
멤버 연산자는 해당하는 값이 해당하는 객체에 포함되어 있는 지를 확인하는 연산자입니다.
이 때 확인할 수 있는 객체의 자료형은 다음과 같습니다.
All built-in sequences and set types support this as well as dictionary, for which
in tests whether the dictionary has a given key.
시퀀스 자료형 | 문자열 |
리스트 | |
튜플 | |
range | |
매핑 타입 자료형 | 딕셔너리 |
집합 | 집합 |
frozenset |
참고자료
https://docs.python.org/3/reference/expressions.html#membership-test-operations
'python > basic' 카테고리의 다른 글
[Python] 컬렉션(Collection) (0) | 2023.06.02 |
---|---|
[Python] 연산자(Operators) - (7) 비트 연산자 (0) | 2023.06.02 |
[Python] 연산자(Operators) - (5) 식별 연산자 (0) | 2023.05.31 |
[Python] 연산자(Operators) - (4) 논리 연산자 (0) | 2023.05.31 |
[Python] 연산자(Operators) - (3) 비교 연산자 (0) | 2023.05.31 |