• 大小: 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

评论

共有 条评论