문제
https://school.programmers.co.kr/learn/courses/30/lessons/181944
Code
n = int(input())
if n % 2 == 0:
print(f"{n} is even")
else:
print(f"{n} is odd")
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Python] 덧셈식 출력하기 (0) | 2023.11.24 |
---|---|
[Python] 문자열 붙여서 출력하기 (0) | 2023.11.20 |
[Python] 문자 리스트를 문자열로 변환하기 (0) | 2023.11.10 |
[Lv.0/Python] 특정 문자 제거하기 (0) | 2023.07.28 |
[Lv.0/Python] 머쓱이보다 키 큰 사람 (0) | 2023.07.28 |