Learn Hard Way the Python
Prompting People
decom0405
2016. 11. 10. 23:49
11/10
Prompting People
>>>
age = raw_input("How old are you?") # 실행창에 How old are you가 출력 되고 옆에 raw input 쳐야함
height = raw_input("How tall are you?") # 실행창에 How tall are you가 출력 되고 옆에 raw input 쳐야함
weight = raw_input("How much do you weight?") # 실행창에 How much do you weight가 출력 되고 옆에 raw input 쳐야함
print "So, you're %r old, %r tall and %r heavy." %(
age, height, weight) # 실행창에 raw input 입력값 출력됨
반응형