Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created May 25, 2020 21:47
Show Gist options
  • Save hsleonis/144ad08c18dcbae0457be073644c0464 to your computer and use it in GitHub Desktop.
Save hsleonis/144ad08c18dcbae0457be073644c0464 to your computer and use it in GitHub Desktop.
Returns the length of a string in bytes.
def byte_size(s):
  return len(s.encode('utf-8'))
byte_size('😀') # 4
byte_size('Hello World') # 11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment