삼항 연산자가 Python 2.5에 추가되었습니다. 구문은 다음과 같습니다.
구문
x if expr==True else y
예시
다음 예는 사용법을 보여줍니다.
>>> percent=59 >>> 'pass' if percent>=50 else 'fail' 'pass' >>> percent=45 >>> 'pass' if percent>=50 else 'fail' 'fail'
삼항 연산자가 Python 2.5에 추가되었습니다. 구문은 다음과 같습니다.
x if expr==True else y
다음 예는 사용법을 보여줍니다.
>>> percent=59 >>> 'pass' if percent>=50 else 'fail' 'pass' >>> percent=45 >>> 'pass' if percent>=50 else 'fail' 'fail'