Skip to content

Instantly share code, notes, and snippets.

@moulik-source
Created October 2, 2021 15:21
Show Gist options
  • Save moulik-source/6cddf15719f2eb626ed63678e72e52f6 to your computer and use it in GitHub Desktop.
Save moulik-source/6cddf15719f2eb626ed63678e72e52f6 to your computer and use it in GitHub Desktop.
leaving spaces in string
#adding two words in a string 👇🏽
print("Hello" + "World")
#to leave gap between two words
print("Hello" + " World")
#Found the gap ☝
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment