Question #269679

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.


Expert's answer

greeting = "hello"
name = "John"
greet_name = greeting + " " + name
print(greet_name)
LATEST TUTORIALS
APPROVED BY CLIENTS