Python - Hello You Program


Home

Author: caroundw5h
Date: February 6, 2004
Info:
# python implementation
name = raw_input("What is your name? ")
print " Hello %s, how are you?" % (name)

Home