code/python

빠른 Python 정리 02: 입출력

devstdio 2019. 4. 28. 11:16

입력

무조건 str로 받음. int로 받기 위해서는 int()input()을 감싸줌으로서 강제 형변환이 필요함.

자료형이 제대로 주어지지 않았을 때 일어날 수 있는 참사

입력으로 3이 주어진다.

int(input())*3의 출력 결과는 9.

input()*3의 출력 결과는 '333'.

출력

print('life' 'is' 'too' 'short') -> lifeistooshort

print('life','is','too','short') -> life is too short

print('this', end='!')
print('is', end='?')
print('py3', end='')

-> this!is?py3

print('a','b','c',sep=':') -> a:b:c

반응형