코딩테스트/Python

프로그래머스 스쿨 - 문자열로 변환(Python)

NOCKNOCK 2023. 8. 30. 10:10
def solution(n):
    answer = str(n)
    return answer