Created
October 2, 2021 15:21
-
-
Save moulik-source/6cddf15719f2eb626ed63678e72e52f6 to your computer and use it in GitHub Desktop.
leaving spaces in string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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