# The code below almost works
name = input("Enter your name")
print("Howdy")
Answers
Answered by
34
Explanation:
The code given above will not print the name of the person whose name the user will enter in the first place. Rather it will constantly print out the name as HOWDY, all the time when the program is run, no matter whatever the user enters the name in input.
To print out the correct name, the user enters, we need to make some changes in the program;
{
string name
name = input("Enter your name")
print(name)
}
Answered by
0
Answer:
Kya hoga answer muchhe nhi samchh aa raha h
Similar questions