본문 바로가기
Python/Python Basic

파이썬, input(입력) 과 print(출력)

by 워니 wony 2019. 5. 8.

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

 

 

반응형

댓글