Skip to content

Instantly share code, notes, and snippets.

@DataSolveProblems
Created May 3, 2019 08:20
Show Gist options
  • Save DataSolveProblems/a8610f9a2665a0fc5de080f4023743ee to your computer and use it in GitHub Desktop.
Save DataSolveProblems/a8610f9a2665a0fc5de080f4023743ee to your computer and use it in GitHub Desktop.
import xlsxwriter as xw
workbook = xw.Workbook('MyWorkbook.xlsx')
worksheet = workbook.add_worksheet()
worksheet.write('A1', 'Hello World')
worksheet.write(0, 1, 'Goodbye')
workbook.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment