[프로그래머스] Python / 나이 출력
2024. 3. 21. 22:34ㆍCoding/프로그래머스-Python
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120820
문제
코드
def solution(age):
answer = 2022-(age - 1)
return answer
'Coding > 프로그래머스-Python' 카테고리의 다른 글
[프로그래머스] Python / 각도기 (0) | 2024.03.21 |
---|---|
[프로그래머스] Python / 두 수의 나눗셈 (0) | 2024.03.21 |
[프로그래머스] Python / 두 수의 합 (0) | 2024.03.21 |
[프로그래머스] Python / 두 수의 곱 (0) | 2024.03.21 |
[프로그래머스] Python / 두 수의 차 (0) | 2024.03.21 |