개발에 관한 여러 팁, 도움이 될 만한 글을 소개하는 블로그입니다.
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
댓글 없음:
댓글 쓰기