반응형
짝수와 홀수
1안) solution.py
def solution(num):
answer = ''
if num % 2 == 0:
answer = str("Even")
else:
answer = str("Odd")
return answer
2안) solution.py
def solution(num):
answer = ''
if num % 2 == 1:
answer = str("Odd")
else:
answer = str("Even")
return answer
출처 - 프로그래머스(코딩테스트 연습) : https://school.programmers.co.kr/learn/courses/30/lessons/12937
파이션 if else
a = 200
b = 33
if b > a:
print("b is greater than a")
elif a == b:
print("a and b are equal")
else:
print("a is greater than b")
a is greater than b
참고URL
- w3schools : https://www.w3schools.com/python/gloss_python_else.asp
- w3schools : https://www.w3schools.com/python/python_operators.asp
728x90
반응형
'스크립트' 카테고리의 다른 글
[코딩테스트 입문] n의 배수 고르기 (0) | 2022.12.02 |
---|---|
[코딩테스트 입문] 자릿수 더하기 (0) | 2022.12.02 |
[코딩테스트 입문] 평균 구하기 (0) | 2022.11.30 |
[코딩테스트 입문] 개미 군단 (0) | 2022.11.30 |
[코딩테스트 입문] 문자열 정렬하기 (1) (0) | 2022.11.24 |