본문 바로가기
python/basic

[Python] 연산자(Operators) - (6) 멤버 연산자

by wjwkddyd221001 2023. 5. 31.

개요

파이썬 연산자는 다음과 같습니다.

  1. 산술 연산자(Arithmetic Operators)
  2. 할당 연산자(Assignment Operators)
  3. 비교 연산자(Comparison Operators)
  4. 논리 연산자(Logical Operators)
  5. 식별 연산자(Identity Operators)
  6. 멤버 연산자(Membership Operators)
  7. 비트 연산자(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

https://www.w3schools.com/python/python_operators.asp