Files
30-seconds-of-code/snippets/byte-size.md
Angelos Chalaris f6a215e9e3 Kebab file names
2023-04-27 22:00:06 +03:00

388 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Byte size of string string river-house-lights 2018-02-01T10:19:59+02:00 2020-11-02T19:27:07+02:00

Returns the length of a string in bytes.

  • Use str.encode() to encode the given string and return its length.
def byte_size(s):
  return len(s.encode('utf-8'))
byte_size('😀') # 4
byte_size('Hello World') # 11