【Python】通過xlwt模組使用表格
def create_table(keyword):
## 建立表格名稱
if '%' in keyword:
keyword.replace('%','+')
tableName = 'zhihu-' + keyword + '.xls'
wt_book = xlwt.Workbook(encoding = 'utf-8', style_compression = 0)
sheet = wt_book.add_sheet(keyword, cell_overwrite_ok = True)
## 表格樣式
for i in range (5):
sheet.col(i).width = 2000 + 10000*i
fnt = xlwt.Font()
fnt.bold = True
alig_center = xlwt.Alignment()
alig_center.horz = xlwt.Alignment.HORZ_CENTER
style = xlwt.XFStyle()
style.font = fnt
style.alignment = alig_center
sheet.write(0,0,"Nid",style)
sheet.write(0,1,"Title",style)
sheet.write(0,2,"Summary",style)
sheet.write(0,3,"Content",style)
sheet.write(0,4,"Url",style)
wt_book.save(tableName)
return sheet,wt_book,tableName
相關文章
- node表格模組exceljs介紹1–基本使用ExcelJS
- python你用過哪些模組Python
- Python中模組的使用Python
- Python logging模組的使用Python
- Python表格處理模組xlrd在Anaconda中的安裝Python
- Android 通過 APT 解耦模組依賴AndroidAPT解耦
- Nginx通過geo模組設定白名單Nginx
- Python 中argparse模組的使用Python
- python inspect模組簡單使用Python
- python logging模組使用總結Python
- Python模組 adorner 的使用示例Python
- python 模組:itsdangerous 模組Python
- Python模組:time模組Python
- Python模組過載的五種方法Python
- 移遠 EC20 模組(4G通訊模組)AT指令測試 TCP 通訊過程TCP
- Swoole 中通過 process 模組實現多程式
- Python讀寫excle之xlrd、xlwtPython
- Python模組之urllib模組Python
- python模組之collections模組Python
- python非同步asyncio模組的使用Python非同步
- Python中yaml模組的使用教程PythonYAML
- 如何使用python計數模組counter?Python
- 【python基礎】os模組的使用Python
- 如何通過模組/外掛機制,靈活組織Laravel工程Laravel
- Python 模組Python
- [Python模組學習] glob模組Python
- Python中使用dateutil模組解析時間Python
- python中使用poplib模組接收郵件Python
- python-包及日誌模組使用Python
- 使用 Python 函式進行模組化Python函式
- Python paramiko模組的安裝與使用Python
- Python:使用logging模組記錄日誌Python
- 如何使用Python經緯座標模組?Python
- python中的itertools模組簡單使用Python
- Python中模組是什麼?Python有哪些模組?Python
- 通過專案梳理vuex模組化 與vue元件管理Vue元件
- Python Execl模組Python
- Python mongoHelper模組PythonGo