Search code examples
pythonexcelxlwings

Any way to create a new worksheet using xlwings?


Using Python xlwings, how can I create a new worksheet?


Solution

  • import xlwings as xw
    wb = xw.Book()
    wb.sheets.add()
    

    See also the docs.