728x90
*문제 출처는 프로그래머스에 있습니다.
문제 제목: 짝수와 홀수
문제 사이트: https://programmers.co.kr/learn/courses/30/lessons/12937
나의 풀이
def solution(num):
answer = ''
if num % 2 == 0:
answer = 'Even'
else:
answer = 'Odd'
return answer
※ 알아야 할 것
- N % 2 == 0는 짝수, 홀수를 구할 때 많이 사용하는 식이다.
728x90
'coding test - python > Programmers' 카테고리의 다른 글
Programmers / 약수의 합 / Python (0) | 2022.03.29 |
---|---|
Programmers / 자릿수 더하기 / Python (0) | 2022.03.29 |
Programmers / 두 개 뽑아서 더하기 / Python (0) | 2022.03.29 |
Programmers / 모의고사 / Python (0) | 2022.03.29 |
Programmers / 핸드폰 번호 가리기 / Python (0) | 2022.03.29 |