tl;dr CSV -> XLSXã«å¤æããã¨ãã«openpyxl.utils.exceptions.IllegalCharacterErrorã_csv.Errorãåºãã®ã§è§£æ±ºãã ã³ããã§å¯¾å¦ãããã¡ãã£ã¨ããã£ã æçµçã«ã¯ãããªã£ãâ import re import os import openpyxl _ILLEGAL_CHARACTERS_RE = re.compile(r"[\000-\010]|[\013-\014]|[\016-\037]") def _fix_csv(self, csv_file_path: str, fixed_csv_path: str): with open(csv_file_path, "r") as fi: with open(fixed_csv_path, "w") as fo: line = fi.readline() while li
{{#tags}}- {{label}}
{{/tags}}