91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 5.94KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發布日期: 2021-01-30
  • 語言: Python
  • 標簽: Word??Excel??c??d??

資源簡介

ExceltoWord

資源截圖

代碼片段和文件信息

#!?/usr/bin/env?python
#?-*-?coding:utf-8?-*-

import?xlrd
from?docx?import?Document
from?docx.enum.table?import?WD_TABLE_ALIGNMENT
import?MySQLdb

def?open_excel(filename=‘stu_info.xlsx‘):
????try:
????????data?=?xlrd.open_workbook(filename)
????????table?=?data.sheets()[0]
????????return?table
????except?Exception?e:
????????print?str(e)
????????return?None


def?get_data_by_coord(table?row=0?col=0):
????try:
????????data?=?table.row_values(row)[col]
????????return?data
????except?Exception?e:
????????print(str(e))
????????return?None


def?get_student_info(table?row):
????try:
????????student?=?table.row_values(row)
????????return?student
????except?Exception?e:
????????print?str(e)
????????return?None


def?strip(string):
????start?=?0
????en

評論

共有 條評論