上传者: 38656989
|
上传时间: 2023-01-27 14:28:05
|
文件大小: 37KB
|
文件类型: PDF
本篇文章,完全是用来记录代码用的,目的是使用Python,基于Tkinter编写crc校验工具。
# -*- coding: utf-8 -*-
import Tkinter
import tkFileDialog
WIDTH = 16
TOPBIT = (1 << (WIDTH - 1))
crcTable = {}
class FindLocation(object):
def __init__(self):
#创建主窗口,用于容纳其它组件
self.root = Tkinter.Tk()
#给主窗口设置标题内容
self.root.title(获取