[PYTHON] 삼항 연산자(Ternary operators)

Minjeong Bak·2021년 10월 27일
0

PYTHON/Django

목록 보기
9/14

True if 조건문 else False

  • 적용 전
if a % 2 == 0:
    print("짝수")
else:
    print("홀수")
  • 적용 후
print("짝수") if a % 2 == 0 else print("홀수")
  • 중첩
if [Condition1]:
    [True1]
elif [Condition2]:
    [True2]
else
    [False]

⬇︎

[True1] if [Condition1] else [True2] if [Condition2] else [False]

0개의 댓글