How to Join List of Unicode Strings in Python? ‘?’
To join a list of Unicode strings in Python, use the string.join(list) method on the delimiter string. For example, you can call ‘?’.join([‘β’, ‘?’, ‘?’]) to obtain the string ‘β????’. Note that per default, all strings are UTF-8 in Python which means they already are Unicode encoded. This morning—when reading a WhatsApp message during my … Read more