资源简介
Python实现的一个将Word中的批注转换成脚注的小脚本。
1、删除Word中原有的脚注
2、将Word中的批注转成脚注
3、删除所有批注
三个功能分在三个脚本中,可以分别使用,一个auto.py对三个脚本集成。
代码片段和文件信息
#-*-coding:UTF-8 -*-
import ossystraceback
import delfootnotecomment2footnotedelcomment
src = “src.doc“
lstCommentText = []
lstScopeText = []
def main ():
print “-“*80
srcfile = src
destfile = srcfile[0:srcfile.rfind(‘.‘)] + “_result.doc“
if(len(sys.argv)>1):
srcfile = sys.argv[1]
if(len(sys.argv)>2):
destfile = sys.argv[2]
else:
destfile = srcfile[0:srcfile.rfind(‘.‘)] + “_result.doc“
srcfile = os.path.realpath(srcfile)
destfile = os.path.realpath(destfile)
if(False == os.path.exists(srcfile)):
print (‘源文件不存在: %s‘%(srcfile)).decode(“UTF-8“).encode(“cp936“)
return
“““
if(False == os.path.exists(destfile)):
print (‘目的文件不存在: %s‘%(destfile)).decode(“UTF-8“).encode(“cp936“)
return
“““
print (“源文件:%s“%(srcfile)).decode(“UTF-8“).encode(“cp936“)
print (“目的文件:%s“%(destfile)).decode(“UTF-8“).encode(“cp936“)
print
delfootnote.delfootnote(srcfilesrcfile+“.1.doc“)
print
comment2footnote.comment2footnote(srcfile+“.1.doc“srcfile+“.2.doc“)
print
delcomment.delcomment(srcfile+“.2.doc“destfile)
print “-“*80
if __name__ == “__main__“:
main()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-11-06 10:34 comment2footnote\
文件 1239 2010-09-22 18:45 comment2footnote\auto.py
文件 3843 2010-09-22 19:20 comment2footnote\comment2footnote.py
文件 3019 2010-09-22 18:47 comment2footnote\delcomment.py
文件 3029 2010-11-06 10:32 comment2footnote\delfootnote.py
相关资源
- Python科学计算 张若愚 第二版-书及全
- 商品管理系统python
- Honeywell树莓派读取扫枪扫码数据
- Tkinter
- Python 数据库编程入门教程
- 基于PCA的故障检测Python代码
- 根据epsg代号进行坐标的批量投影转换
- 基于python的图书管理系统
- Python操作Mysql教程手册高清完整PDF版
- pthon 高斯拟合
- python 黑白棋
- Python 获取USB摄像头图像,并二值化
- Python WxPython开源扫雷游戏PyMine新版1
- 人脸检测+保存图片
- pycrypto-2.6.1-cp36-cp36m-win_amd64.whl
- 用python实现一个百度百科的爬虫工具
- Python 的PIL库,包含freetype
- alpha_shape.zip
- python人脸追踪
- 鱼c小甲鱼零基础学python全套视频和课
- PyQwt-5.2.1-cp37-cp37m-win_amd64.whl
- 房价预测的BP神经网络实现_python代码
- Python3.x+Pyqt5实现主窗体与子窗体相互
- Python实现动物识别产生式系统
- py2exe for 2.764位
- testbrowse.py
- python实现的k-means算法
- 问卷星爬虫带验证码
- python LDA学习
- 随机森林的代码实现和相应的数据集
评论
共有 条评论