Instruction
We can also create a new spreadsheet with the create_sheet() method:
wb.create_sheet("January")
This function takes two arguments: the title of the new worksheet and an index. The index of the new worksheet specifies its order in the workbook. You can omit the index argument, as we did in the example; in that case, the new sheet will be added after all the existing sheets in the workbook.
Exercise
Create four additional worksheets in our existing wb workbook:
HousingEntertainmentFoodOther
Save the workbook in the file budget.xlsx.



