pyhonでexcelファイルを読み込み、列幅を自動調整して上書き保存するためのプログラムを作成しています。現状、下記プログラムを作成し実行してみました。
import
1import pandas as pd 2import openpyxl as xl 3path = 'AAA' 4 5# ディレクトリ階層+中身 が各列に入る2次元リストを作る 6# [['AAA'], 7# ['AAA', 'test1.xlsx'], 8# ['AAA', 'BBB'], 9# ['AAA', 'BBB', 'test2.xlsx'], 10# ...] 11pathlist = [] 12for curDir, dirs, files in os.walk(path): 13 leaf = curDir.split('/') 14 pathlist.append(leaf) 15 for a_dir in dirs: 16 pathlist.append(leaf + [a_dir]) 17 for a_file in files: 18 pathlist.append(leaf + [a_file]) 19 20# 作った2次元リストをデータフレームにする 21path_df = pd.DataFrame(pathlist) 22 23# 重複削除 24path_df = path_df.drop_duplicates() 25print(path_df) 26 27path_df.to_excel('sample.xlsx') 28 29# set input file name 30inputfile = 'sample.xlsx' 31 32# read input xlsx 33wb1 = xl.load_workbook(filename=inputfile) 34ws1 = wb1.worksheets[0] 35 36# set column width 37for col in ws1.columns: 38 max_length = 0 39 column = col[0].column 40 41 for cell in col: 42 if len(str(cell.value)) > max_length: 43 max_length = len(str(cell.value)) 44 45 adjusted_width = (max_length + 2) * 1.2 46 ws1.column_dimensions[column].width = adjusted_width 47 48# save xlsx file 49wb1.save(inputfile)
実行すると、下記エラーが発生します。
File "C:\Users\NEC\anaconda3\lib\site-packages\openpyxl\descriptors\base.py", line 42, in set
raise TypeError('expected ' + str(self.expected_type))
TypeError: expected <class 'str'>
このエラーを回避して自動調整するには、私が作成した上記プログラムは問題なくて、
base.pyのプログラムの中身を修正する必要があるのでしょうか。
どなたかお分かりになる方いましたら、ご教授お願いいたします。
回答2件
あなたの回答
tips
プレビュー