Skip to content

Instantly share code, notes, and snippets.

View Taichi-Pink's full-sized avatar
🎯
Focusing

Taichi Taichi-Pink

🎯
Focusing
View GitHub Profile
@Taichi-Pink
Taichi-Pink / excel_python.py
Last active December 29, 2020 00:47
Create your first excel file by Python.
import xlwt
from xlwt import Workbook
# Workbook is created
wb = Workbook()
# add_sheet is used to create sheet.
sheet1 = wb.add_sheet('first sheet')
#sheet1.write(row, colum, content)