Python - Short Circuit Operator로서의 or, and 연산자
연산 | 수식 |
---|---|
x or y | if x is false, then y, else x |
x and y | if x is false, then x, else y |
- 스위치를 이용해 값 병합할 때 사용
- https://docs.python.org/3/library/stdtypes.html#boolean-operations-and-or-not
연산 | 수식 |
---|---|
x or y | if x is false, then y, else x |
x and y | if x is false, then x, else y |