프로그래머스. 짝수와 홀수 파이썬 풀이

minan·2021년 6월 28일
0

프로그래머스

목록 보기
61/92

프로그래머스. 연습문제. Level 1. 짝수와 홀수 파이썬 풀이

문제링크 https://programmers.co.kr/learn/courses/30/lessons/12937

def solution(num):
    
    return "Even" if num % 2 == 0 else "Odd"
profile
https://github.com/minhaaan

0개의 댓글