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

강주형·2022년 8월 14일
0

https://school.programmers.co.kr/learn/courses/30/lessons/12937

연습문제

def solution(num):
    return 'Even' if num % 2 == 0 else 'Odd'
profile
Statistics & Data Science

0개의 댓글