0
Help with python...again
, the words are smashed together(see code) https://code.sololearn.com/c1Fqu7cYcpO8/?ref=app
2 Answers
+ 2
ăTank Dempsey ăâ ,
it is easier to use comma to separate the output in print() function, because we don't need to handle "+" operator and spaces. try the code:
name = input ()
#print ("hello " + name, "welcome to sololearn" )
print ("hello", name, "welcome to sololearn" )