[프로그래머스] 짝수와 홀수Lv.1 - Python

GoshK·2022년 1월 28일
0
post-thumbnail

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

나의 풀이


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

0개의 댓글