Set the variable called greeting to some greeting, e.g. "hello".
Set the variable called name to some name, e.g. "John".
Then set the variable called greet_name that that concatenates greeting , name , and a space " " between them.
greeting = "hello" name = "John" greet_name = greeting + " " + name print(greet_name)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments