[프로그래머스][Python] 짝수와 홀수 def solution(num): if num%2==0: return "Even" else: return "Odd" Share on Twitter Facebook LinkedIn Previous Next