30秒学会 Python 片段 · 2023年12月26日

30秒学会 Python 片段 – Byte size of string

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

翻译自:https://www.30secondsofcode.org/python/s/byte-size