코딩테스트/Python
프로그래머스 스쿨 - 문자열을 정수로 변환하기(Python)
NOCKNOCK
2023. 8. 31. 10:11
def solution(n_str):
answer = 0
answer = int(n_str)
return answer