원문 : http://learnpythonthehardway.org/book/ex12.html
raw_input을 조금 다르게 사용해 보자 (ex12.py)
age = raw_input("How old are you? ") height = raw_input("How tall are you? ") weight = raw_input("How much do you weigh? ") print "So, you're %r old, %r tall and %r heavy." % (age, height, weight)
결과
알 수 있는 내용...
1. raw_input("입력 받을때 표시 할 내용") <- 이렇게 사용 가능하다.
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 14: Prompting and Passing (0) | 2013.12.02 |
---|---|
Python 어렵게 배우기 - Exercise 13: Parameters, Unpacking, Variables (0) | 2013.12.02 |
Python 어렵게 배우기 - Exercise 11: Asking Questions (0) | 2013.11.28 |
Python 어렵게 배우기 - Exercise 10: What Was That? (0) | 2013.11.28 |
Python 어렵게 배우기 - Exercise 9: Printing, Printing, Printing (0) | 2013.11.21 |