Any way to create a new worksheet using xlwings?

hd810 picture hd810 · Oct 14, 2014 · Viewed 9.3k times · Source

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

Answer

Felix Zumstein picture Felix Zumstein · Oct 19, 2014
import xlwings as xw
wb = xw.Book()
wb.sheets.add()

See also the docs.