1name = input("Hi! What’s your name ? ")
2print("Nice to meet you " + name + "!")
3
4age = input("How old are you ? ")
5
6print("So, you are already " + str(age) + " years old, " + name + " !")
1# Python 2
2
3txt = raw_input("Type something to test this out: ")
4print "Is this what you just said?", txt
5