Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
やあ!
xlwtパッケージを使用して、PythonでExcelファイルを作成しています。このモジュールを使用して、すべてのシートに特定のヘッダー/フッターを設定する方法はありますか?
どうもありがとうございます!
sheet = book.get_sheet(0) sheet.header_str = 'what you prefer' sheet.footer_str = 'things'
簡単なforステートメントで本のすべてのシートに対してそれを行うことができます。
for s in book.sheets(): s.header_str = 'what you prefer'