UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019'

UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019'

瀏覽:1489
日期:2025-10-02
str(cell) is trying to convert cell to ascii,ascii only supports characters with ordinals less than 255 ... what is cell? if cell is a unicode string just do ......看更多