본문 바로가기
Python

Python에서는 &&, || 연산자 대신 and, or 사용

by jayden-lee 2019. 6. 7.
728x90

Python 논리연산자는 and, or 이다. 논리연산자의 경우에 두 개 이상의 조건식을 조합하여 표현할 때 주로 사용한다.

and 논리 연산자

if i in dictA and i in dictB:
    print('i 값이 dictA와 dictB 딕셔너리에 키 값으로 존재합니다.');

or 논리 연산자

if i in dictA or i in dictB:
    print('i 값이 dictA 또는 dictB 딕셔너리에 키 값으로 존재합니다.');

댓글