Programming for Everybody: Assignment 02.2 Variables and Expressions - edorlando07/datasciencecoursera GitHub Wiki

###Getting Started with Python

2.2 Write a program that uses raw_input to prompt a user for their name and then welcomes them. Note that raw_input will pop up a dialog box. Enter Sarah in the pop-up box when you are prompted so your output will match the desired output.

name = raw_input("Enter your name: ")
print "Hello " + name

The output for the code below is listed below:

Hello Eddie