
exercise2.2.py
By:
lmayo on
Dec 28th, 2011 | syntax:
Python | size: 0.33 KB | hits: 62 | expires: Never
#!/usr/bin/env python
# Author: Landon Mayo
# Exercise 2.2
# Write a program to prompt the user for their name and then welcomes them
# prompt user for their name
getName=raw_input("Enter Your're Name: ")
# Welcome the user by adding the string 'Hello' to
# the raw_input defined in getName variable
print"Hello " + getName