Excel Python

参考リンク

テンプレートに書き込む:https://www.yuttanpo.com/xlwings-setting-template/
rangeの使い方:【図解!】xlwingsの使い方 | pythonでExcelを操作④セル操作編 – YutaKaのPython教室 (yutaka-note.com)

rang

エラー集

Sheet名に数値を使うとエラーがでる。
to_sheet = wb.create_sheet(title=sname) snameに数値を代入するとエラーがでる。
TypeError: expected string or bytes-like object

文字コードの不一致
UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x94 in position 0: invalid start byte
cp932を指定する  data = pd.read_csv(file, encoding=”cp932″)