input과 print
- input은 입력하는 것, 사용자가 키보드를 통해서 정보를 입력할 수 있도록 하는 것
ex) input("문장")은 문장 옆에 입력하는 박스가 나온다.
- print는 화면에 출력해 주는 명령어,
ex) print(변수)는 변수에 담겨 있는 것을 알려줘 라는 뜻
ㅇ print의 서식
- end=' '는 줄 바꾸지 말라는 것
- sep='' 나눠질 때 빈칸없이 해 달라
price=1000
print(price,'won')
# 결과값) 1000 won
print(price,"won",sep='')
# 결과값) 1000won
print 예시
print("hello "*5)
결과값 : hello hello hello hello hello
a = "hello"
for h in range(5):
print(a)
결과값 :
hello
hello
hello
hello
hello
반응형
'Python > Python Basic' 카테고리의 다른 글
파이썬 자료구조 기본 : List / tuple / dictionary / set (0) | 2019.05.08 |
---|---|
파이썬, 문자열 처리와 포맷팅(%s, %d 등) (0) | 2019.05.08 |
파이썬, 한줄과 여러줄 주석처리 (0) | 2019.05.08 |
파이썬 기본 개념, 변수와 대입연산자(쉬움 주의) (0) | 2018.11.24 |
파이썬 시작 세팅 2 : 파이참 pychrm 무료버전 설치 (0) | 2018.11.24 |
댓글