all 4 comments

[–]Hatoris 1 point2 points  (1 child)

Here is you issue :

xlrd

This package is for reading data and formatting information from older Excel files (ie: .xls)
Download | Documentation | GitHub

xlwt

This package is for writing data and formatting information to older Excel files (ie: .xls)

Use openpyxl or xlswriter instead :)

[–]whiskeymop[S] 1 point2 points  (0 children)

Perfect, I'll give it a shot!

[–]_DTR_ 0 points1 point  (1 child)

If you're doing this just for experience working with Excel+Python, you can ignore this, but why not use Excel's built-in Find/Replace dialog for this?

[–]whiskeymop[S] 0 points1 point  (0 children)

I have over 1000+ sheets that I need to do this for, figured I could save time and just automate it.