国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Python > 正文

python實(shí)現(xiàn)在windows下操作word的方法

2019-11-25 17:38:07
字體:
供稿:網(wǎng)友

本文實(shí)例講述了python實(shí)現(xiàn)在windows下操作word的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

import win32comfrom win32com.client import Dispatch, constantsw = win32com.client.Dispatch('Word.Application')# 或者使用下面的方法,使用啟動(dòng)獨(dú)立的進(jìn)程:# w = win32com.client.DispatchEx('Word.Application')# 后臺(tái)運(yùn)行,不顯示,不警告w.Visible = 0w.DisplayAlerts = 0# 打開新的文件doc = w.Documents.Open( FileName = filenamein )# worddoc = w.Documents.Add() # 創(chuàng)建新的文檔# 插入文字myRange = doc.Range(0,0)myRange.InsertBefore('Hello from Python!')# 使用樣式wordSel = myRange.Select()wordSel.Style = constants.wdStyleHeading1# 正文文字替換w.Selection.Find.ClearFormatting()w.Selection.Find.Replacement.ClearFormatting()w.Selection.Find.Execute(OldStr,False,False,False,False,False,True,1,True,NewStr,2)# 頁(yè)眉文字替換w.ActiveDocument.Sections[0].Headers[0].Range.Find.ClearFormatting()w.ActiveDocument.Sections[0].Headers[0].Range.Find.Replacement.ClearFormatting()w.ActiveDocument.Sections[0].Headers[0].Range.Find.Execute(OldStr,False,False,False,False,False,True,1,False,NewStr,2)# 表格操作doc.Tables[0].Rows[0].Cells[0].Range.Text ='123123'worddoc.Tables[0].Rows.Add() # 增加一行# 轉(zhuǎn)換為htmlwc = win32com.client.constantsw.ActiveDocument.WebOptions.RelyOnCSS = 1w.ActiveDocument.WebOptions.OptimizeForBrowser = 1w.ActiveDocument.WebOptions.BrowserLevel = 0 # constants.wdBrowserLevelV4w.ActiveDocument.WebOptions.OrganizeInFolder = 0w.ActiveDocument.WebOptions.UseLongFileNames = 1w.ActiveDocument.WebOptions.RelyOnVML = 0w.ActiveDocument.WebOptions.AllowPNG = 1w.ActiveDocument.SaveAs( FileName = filenameout, FileFormat = wc.wdFormatHTML )# 打印doc.PrintOut()# 關(guān)閉# doc.Close()w.Documents.Close(wc.wdDoNotSaveChanges)w.Quit()

希望本文所述對(duì)大家的Python程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 沭阳县| 新巴尔虎左旗| 剑河县| 抚远县| 台中市| 武宁县| 林口县| 湘潭县| 嵊州市| 北碚区| 贺州市| 云阳县| 天门市| 钟祥市| 厦门市| 青岛市| 抚顺市| 莎车县| 大姚县| 宁陵县| 桐乡市| 邯郸市| 年辖:市辖区| 商洛市| 浦江县| 郑州市| 牙克石市| 峨眉山市| 汶川县| 陕西省| 周至县| 平塘县| 揭东县| 黎平县| 铜鼓县| 建阳市| 若羌县| 洮南市| 宁海县| 尼玛县| 布尔津县|