This has been bogging my mind with my current project. I'm trying to write styles into an excel sheet using XLWT, see below:
sheet.write(rowi,coli,value,stylesheet.bold,stylesheet.bordered)
I'm running into this error:
TypeError: write() takes at most 5 arguments (6 given)
Any idea how to get around this to add multiple styles to a certain cell? Is it possible to do a list here?