Write a python program to ask the user for his name and greets him:
Answer:
s = raw_input("What is your name?")
print "HELLO ", s
Output:
What is your name?Tom
HELLO Tom
Answer:
s = raw_input("What is your name?")
print "HELLO ", s
Output:
What is your name?Tom
HELLO Tom
No comments:
Post a Comment