Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created July 25, 2021 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatosmorina/b39138843ee089eb66de7162008914f4 to your computer and use it in GitHub Desktop.
Save fatosmorina/b39138843ee089eb66de7162008914f4 to your computer and use it in GitHub Desktop.
paragraph = "this is a " \
" paragraph with many " \
" spaces in it" \
""
words = paragraph.split()
print(words) # ['this', 'is', 'a', 'paragraph', 'with', 'many', 'spaces', 'in', 'it']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment