Last active
December 5, 2019 01:49
-
-
Save FerdinaKusumah/42d2b7c85799a02c56fae717f28ebd5c to your computer and use it in GitHub Desktop.
Single string from list
This file contains hidden or 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
"""Join list to single string""" | |
arr = ["Python", "is", "awesome", "and", "i", "love", "it"] | |
print(" ".join(arr)) | |
# Python is awesome and i love it |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment