대부분의 완성된 프로그램은 사용자 입력에 따라 그에 맞는 출력을 내보낸다.
■ 사용자 입력
(1) input 사용하기
>>> a = input("enter the number : ")
>>> print(a)
enter the number : 10
10
(2) print 사용하기
- print 안에 콤마(,) 없는 경우
>>> print("life" "is" "too short")
lifeistoo short
- print 안에 콤마(,) 있는 경우
>>> print("life", "is", "too short")
life is too short
- 0~9까지의 i를 출력
>>> for i in range(10):
print(i)
0
1
2
3
4
5
6
7
8
9
- 0~9까지의 i를 출력 but 줄이 다음 줄로 넘어가지 않고 한 줄에 출력(end=' ')
>>> for i in range(10):
print(i, end=' ')
0 1 2 3 4 5 6 7 8 9
- 0~9까지의 i를 출력, 각 숫자 출력 사이에 어떤 문자 출력(end='hi')
>>> for i in range(10):
print(i, end='hi')
0hi1hi2hi3hi4hi5hi6hi7hi8hi9hi