+ 1
How do I space out the result of this code print(welcome + name) cause in the result there is no spacing
2 Respuestas
+ 4
print can take any number of arguments, and it will separate them with " " by default
So, print(welcome, name) will do the job
+ 2
You have to put the spaces *inside* the quotation marks.