Skip to content

Instantly share code, notes, and snippets.

@cristinelpopescu
Created March 31, 2021 17:19
Show Gist options
  • Save cristinelpopescu/a58c822c5535ed24b4eec238ef113460 to your computer and use it in GitHub Desktop.
Save cristinelpopescu/a58c822c5535ed24b4eec238ef113460 to your computer and use it in GitHub Desktop.
new_sentence = "!".join(["Ana", "are", "mere"])
print(new_sentence)
# alternative:
# space = "!"
# new_sentence = space.join(["Ana", "are", "mere"])
# print(new_sentence)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment