728x90
반응형
홀짝 구분하기
# Python program to check if the input number is odd or even.
# A number is even if division by 2 gives a remainder of 0.
# If the remainder is 1, it is an odd number.
num = int(input("Enter a number: "))
if (num % 2) == 0:
print("{0} is Even".format(num))
else:
print("{0} is Odd".format(num))
728x90
반응형
'PROGRAMMING > Python&자료구조' 카테고리의 다른 글
[점프투파이썬 정리/다운로드] 03장. 자료형(리스트/튜플/딕셔너리/불), 변수 (0) | 2023.06.03 |
---|---|
[점프투파이썬 정리/다운로드] 02장. 자료형(숫자형/문자열) (0) | 2023.05.31 |
[점프투파이썬 정리/다운로드] 01장. 파이썬이란 무엇인가? (0) | 2023.05.30 |
댓글