원문 : http://learnpythonthehardway.org/book/ex14.html
앞에서 공부한 raw_input, argv를 다시 사용 해 보자 (ex14.py)
from sys import argv script, user_name = argv prompt = '> ' print "Hi %s, I'm the %s script." % (user_name, script) print "I'd like to ask you a few questions." print "Do you like me %s?" % user_name likes = raw_input(prompt) print "Where do you live %s?" % user_name lives = raw_input(prompt) print "What kind of computer do you have?" computer = raw_input(prompt) print """ Alright, so you said %r about liking me. You live in %r. Not sure where that is. And you have a %r computer. Nice. """ % (likes, lives, computer)
결과
알 수 있는 내용...
앞에서 다 공부한듯...
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 16: Reading and Writing Files (0) | 2013.12.03 |
---|---|
Python 어렵게 배우기 - Exercise 15: Reading Files (0) | 2013.12.03 |
Python 어렵게 배우기 - Exercise 13: Parameters, Unpacking, Variables (0) | 2013.12.02 |
Python 어렵게 배우기 - Exercise 12: Prompting People (0) | 2013.11.28 |
Python 어렵게 배우기 - Exercise 11: Asking Questions (0) | 2013.11.28 |