Programming/프로그래머스
[프로그래머스] 짝수와 홀수
pental
2020. 10. 10. 11:56
def solution(num):
if num % 2 == 0:
return "Even"
else :
return "Odd"
기본 문제이다.