본문 바로가기
카테고리 없음

파이썬 숫자를 문자열로 문자를 숫자열로

by 비즈봉 2019. 4. 22.

#문자열 -> 숫자

age='10'

converted_Age=int(age)

# 숫자 -> 문자열

age=10

converted_age=str(age)

댓글