Skip to content

Instantly share code, notes, and snippets.

@LouisdeBruijn
Created January 1, 2021 15:09
Show Gist options
  • Select an option

  • Save LouisdeBruijn/4ef8f59654a65591c70abb736e1be0dd to your computer and use it in GitHub Desktop.

Select an option

Save LouisdeBruijn/4ef8f59654a65591c70abb736e1be0dd to your computer and use it in GitHub Desktop.
s = "This string"
print(f"The length of |{s}| is {len(s)} characters and contains {len(s.split())} tokens.")
>>> "The length of |This string| is 11 characters and contains 2 tokens."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment