Write a program that uses input to prompt a user for their name and then welcomes them
Answers
Answered by
0
Answer:
name = raw_input("Enter your name: ")
print "Hello",name
Explanation:
python
Similar questions