원문 : http://learnpythonthehardway.org/book/ex11.html
키보드로 입력을 받아보자 (ex11.py)
print "How old are you?", age = raw_input() print "How tall are you?", height = raw_input() print "How much do you weigh?", weight = raw_input() print "So, you're %r old, %r tall and %r heavy." % (age, height, weight)
print 문 뒤에 콤마(",")를 사용하는 이유는 입력받는 문자가 print 된 문자열 바로 뒤에 표시 되도록 하기 위함이다. (간단히 테스트 해볼것)
결과
알 수 있는 내용...
1. 키보드로 입력을 받을때는 raw_input() 함수를 사용한다.
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 13: Parameters, Unpacking, Variables (0) | 2013.12.02 |
---|---|
Python 어렵게 배우기 - Exercise 12: Prompting People (0) | 2013.11.28 |
Python 어렵게 배우기 - Exercise 10: What Was That? (0) | 2013.11.28 |
Python 어렵게 배우기 - Exercise 9: Printing, Printing, Printing (0) | 2013.11.21 |
Python 어렵게 배우기 - Exercise 8: Printing, Printing (0) | 2013.11.21 |