Using xlwings in python, I want to add new sheet in existing workbook. If sheet already present in the same name, It should return the sheet dataframe.
import xlwings as xw
wb = xw.Book('file_path')
try:
wb.sheets.add('sheetname')
except ValueError as V:
print("Error:", V)