随笔分类 -  tkinter制作小工具

利用Python制作Excel对比工具
摘要:目前功能还不完善,只能对比第一个sheet的内容,代码如下: # -*- coding: utf-8 -*- # 博客园 C丶小明 import xlrd,time from docx import Document from tkinter import * from googletrans im 阅读全文
posted @ 2021-03-05 17:09 C、小明 阅读(1249) 评论(2) 推荐(0)
利用Python制作一个 截图+Excel自动化小工具
摘要:代码如下: GetData.py import xlrd class ReadExcel(): def __init__(self,file): self.open_excel = xlrd.open_workbook(file) # 获取Sheet名 def GetSheetName(self): 阅读全文
posted @ 2020-12-30 16:08 C、小明 阅读(1333) 评论(0) 推荐(0)
利用Python制作文档翻译小工具
摘要:话不多说,直接上代码。 Component文件: # coding:utf-8 from tkinter import * from tkinter import ttk from tkinter import scrolledtext import tkinter.messagebox # 作者: 阅读全文
posted @ 2020-08-28 17:36 C、小明 阅读(724) 评论(1) 推荐(0)