Python : Get size of string in bytes

后端 未结 2 649
星月不相逢
星月不相逢 2020-12-13 01:53

I have a string that is to be sent over a network. I need to check the total bytes it is represented in.

sys.getsizeof(string_name) returns extra bytes.

2条回答
  •  一整个雨季
    2020-12-13 01:55

    If you want the number of bytes in a string, this function should do it for you pretty solidly.

    def utf8len(s):
        return len(s.encode('utf-8'))
    

    The reason you got weird numbers is because encapsulated in a string is a bunch of other information due to the fact that strings are actual objects in python.

    Its interesting because if you look at my solution to encode the string into 'utf-8', there's an 'encode' method on the 's' object (which is a string). Well, it needs to be stored somewhere right? Hence, the higher than normal byte count. Its including that method, along with a few others :).

提交回复
热议问题