프로그래머스/LEVEL 1
파이썬 짝수와 홀수
GenieLove!
2021. 2. 20. 22:54
728x90
반응형
def solution(num):
if num % 2 == 0:
return "Even"
else:
return "Odd"
728x90
반응형