파이썬 입력 함수
·
Python/Function
입력 함수 input 변수 = input('출력 내용') 리턴 타입이 문자열이다. 숫자 등 다른 형식으로 쓰려면 형변환해야 한다. 예제 age = int(input('몇 살이세요? ')) print(age)