input문
-
Python Programming Basic - 3. 입력/출력Python/Python Basic Lesson 2020. 3. 2. 20:33
print 함수 : 괄호 안에 문자열 값을 출력 input 함수 : 사용자가 키보드로 입력 (Enter를 누을 때까지 대기) 문자열 출력 print("hello python") 숫자 출력 print(1) 1 수식의 결과값 출력 print(1+2) 3 변수값 출력 s = "hello python" print(s) hello python (*) 연산자를 이용하여 N 횟수만큼 반복 출력 print('hello python ' * 2 ) hello python hello python 빈줄만 출력하고 싶을 때 print() 문자열 변수에 입력하고, 출력하기 s = input() # hello python 입력 print(s) hello python 입력할 때, 문자열과 같이 출력하기 s = input('문자열 입..