본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 짝수와 홀수

by 현장 2021. 12. 19.

-코드

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