I am writing some data into an Excel file, but I dont know how to adjust the code in order to be able to control which sheet I am writing into:
wb= load_workbook(filename) active_ws=wb.active
Instead of wb.active
, how can I say something like Sheets('Data')
(this is how the VBA syntax would look like...)?