Name = input("enter your name")
print("howdy")
desired output=Hello Sarah
Answers
Answered by
9
Answer:
If you are declaring a variable "Name", you need to even print it out. To get Hello Sarah as output, you can even write the code like this:
name = input("Enter your name : ")
print(name)
Then when you give the input as Hello Sarah, it will print your desired output.
Thank you!
Similar questions
Computer Science,
4 months ago
Geography,
4 months ago
Math,
4 months ago
Social Sciences,
8 months ago
Math,
11 months ago
Chemistry,
11 months ago
English,
11 months ago