Snippet to convert ascii chars to full-width characters. First one: >>> def widen_str(string): ... return(''.join([chr(0xFEE0 + ord(char)) for char in ...
確定! 回上一頁