Using Python xlwings, how can I create a new worksheet?
xlwings
import xlwings as xw wb = xw.Book() wb.sheets.add()
See also the docs.