真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python3去除Excel空白-創(chuàng)新互聯(lián)

【環(huán)境】

成都創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、藁城網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為藁城等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

  Windows 10 下,Python 3.6,使用第三方包 openpyxl。

【config.ini】

[config] ; Excel 文件名 XlFile=D:\test\test.xlsx ; 需處理的表單名 SheetName=Sheet1

【trim_cell_for_excel.py】

# encoding: utf-8 # author: walker # date: 2018-09-26 # summary: 去除 Excel 單元格內(nèi)字符串前后的空白 import os import sys import time import openpyxl from configparser import ConfigParser StartTime = time.time() cur_dir_fullpath = os.path.dirname(os.path.abspath(__file__)) XlFile = r'' SheetName = r'' def ReadConfig():      r""" 讀取配置文件 """     global XlFile, SheetName          cfg = ConfigParser()     cfgFile = os.path.join(cur_dir_fullpath, r'config.ini')     if not os.path.exists(cfgFile):         input(cfgFile + ' not found')         sys.exit(-1)     with open(cfgFile, mode='rb') as f:         content = f.read()     if content.startswith(b'\xef\xbb\xbf'):     # 去掉 utf8 bom 頭         content = content[3:]     cfg.read_string(content.decode('utf8'))     if not cfg.sections():         input('Read config.ini failed...')         sys.exit(-1)              XlFile = cfg.get('config', 'XlFile').strip()               if not os.path.exists(XlFile):         print('Error: not exists %s' % XlFile)         sys.exit(-1)     print('XlFile: %s' % XlFile)          SheetName = cfg.get('config', 'SheetName').strip()      print('SheetName: %s' % SheetName)              print('Read config.ini successed!') def Main():     print('Load %s ...' % XlFile)     wb = openpyxl.load_workbook(XlFile)     print('Load %s success!' % XlFile)     sheet = wb[SheetName]     for i in range(1, sheet.max_row + 1):         for j in range(1, sheet.max_column + 1):             rawVal = sheet.cell(i, j).value             if not isinstance(rawVal, str):                 continue             sheet.cell(i, j).value = rawVal.strip()     print('Save %s ...' % XlFile)     wb.save(XlFile)     print('Save %s success!' % XlFile) if __name__ == '__main__':     ReadConfig()     Main()     print('Time total: %.2fs' % (time.time() - StartTime))     print('Current time: %s' % time.strftime(         '%Y-%m-%d %H:%M:%S', time.localtime(time.time())))

【相關(guān)閱讀】

  • Working with Excel Files in Python

*** walker ***

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


網(wǎng)站欄目:Python3去除Excel空白-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://weahome.cn/article/dosjgj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部