Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/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
Advertisement
Add Comment
Please, Sign In to add comment