2016년 7월 15일 금요일

Python 삼항 연산자 | Python Ternary Operators

Case 1

result = 'True' if a > b else 'False'

Case 2

result = ('False', 'True')[a > b]

Case 3

result = (a > b) and 'True' or 'False'

Read More

댓글 없음:

댓글 쓰기