Learn Hard Way the Python

Asking Question

decom0405 2016. 11. 1. 22:51

11/1


>>>

print " How old are you?",    

age = raw_input()    # 입력하는 값이 출력됨

print "How tall are you?",

height = raw_input()    

print = "How much do you weight?",

weight = raw_input()


print "So, you're %r old, %r tall and %r heavy." % (

age, height, weight)    # %에 할당된 값이 순차적으로 출력









반응형