본문 바로가기

코딩테스트/Python

[프로그래머스] 짝수와 홀수

내 코드

def solution(num):
    return "Even" if num%2==0 else "Odd"

너무 쉽다!!ㅎㅎ