[python] if, else if, else 샘플
파이썬의 조건문 구문 중 하나인 if문의 샘플 코드입니다.
x = 34234
if x % 5 == 0:
print('x is divisible by 5')
elif x % 6 == 0:
print('x is divisible by 6')
elif x % 7 == 0:
print('x is divisible by 7')
else:
print('x is not divisible by 5, 6, or 7')
끝.
댓글
댓글 쓰기