I have a binary file. This file contains an UTF-8 string. Moreover, it is guaranteed that this string is just a single word. In python, how can I get number of letters in th
unicode_string = bytes.decode("utf-8") print len(unicode_string)