[Python] Logic Expression

Hyunwoo Lee·2022년 1월 18일
0

Python

목록 보기
1/3

Python Logic functions

boolean_list = [True, False, True, False]
all(boolean_list) #False
any(boolean_list) #True

all, any 함수를 쓰면 list 전체의 True, False 판단 가능

Python의 특수성

  • a is b
    a와 b의 주소값이 같은지 True, False 반환

  • Python은 -5 - 256까지의 숫자는 미리 메모리에 mapping 해둔다.
    따라서

    a = 5
    b = 5
    a is b 

    의 결과는 True지만

    a = -10
    b = -10
    a is b

    의 결과는 False이다.

profile
10분만 쉬어요

0개의 댓글