I get same results via these two statement in python:
print("Hello", username) # I don't need to give space after Hello
print("Hello " + username) # I need to give space after Hello
What is the difference? If you could please share link/example for me to understand.