一、環(huán)境準(zhǔn)備
openpyxl
的安裝可以直接使用pip
pip install openpyxl
打包使用比較常用的pyinstaller
客蹋, 這個先不著急安裝
pip install pyinstaller
二塞蹭、按照表格內(nèi)容充填顏色
本文只是記錄一項簡單的功能,openpyxl更詳細的用法請查閱Docs:https://openpyxl.readthedocs.io/en/stable/
- 文件讀入
file_name = input("請輸入要處理的文件名:(例如:學(xué)生問卷.xlsx)\n")
try:
file = load_workbook("./"+file_name)
except:
print(f" {file_name} not found! Please put it alongside with this exe!(同一個文件夾內(nèi))")
input("exiting...") #再按鍵一次后退出窗口
exit()
print(f" {file_name} 已加載!")
2.確定條件規(guī)則
def satisfied(cell):
"""
判斷當(dāng)前cell是否滿足條件讶坯,根據(jù)實際情況修改以下內(nèi)容
本例cell數(shù)據(jù)格式為: cor:0.23 p:0.02
"""
text = cell.value # 獲取每個cell中的值番电,字符串格式
if text[:3] != "cor":
return False
c = text[:text.find('p')] # cor:0.23
p = text[text.find('p'):] # p:0.02
try:
c = float(c.split(':')[-1])
p = float(p.split(":")[-1])
except:
print(c,p, "數(shù)據(jù)格式有誤")
if p < pthreshold and abs(c) > cthreshold: # 這里pthreshold cthreshold直接用了外層變量,也可以通過參數(shù)傳入
return True
else:
return False
3.處理工作表
sheet = file.worksheets[0] # 好像創(chuàng)建excel文件默認(rèn)就有三個sheet辆琅,這里選擇第一個
fill = PatternFill(fill_type='solid',fgColor="BCEE68") # 充填格式
for row in sheet.iter_rows(min_row=1, max_row=100, max_col=100): # 按行遍歷
for cell in row: # 判斷每行中的每個cell
if cell.value is not None: # cell中不是啥也沒有的話
if satisfied(cell):
cell.fill = fill
else:
cell.fill = PatternFill(fgColor="FFFFFF") # 不滿足目標(biāo)條件漱办,充填顏色為白色
# 處理完后,保存為新的Excel文件
new_file = input("請輸入保存的文件名(不需要再加'.xlsx', eg:version1):\n")
file.save(f"{new_file}.xlsx")
print("Done with saving! closing!")
三婉烟、打包
pyinstaller
有個很弱智的地方就是不能只打包你Python腳本需要的庫娩井,因此在主環(huán)境下打包速度慢,得到的exe文件也很大似袁。 可以通過創(chuàng)建一個新的python環(huán)境洞辣,里面只安裝pyinstaller和腳本需要的庫解決,如果是conda的話conda create -n xxx python=3.7
即可安裝叔营。安裝后激活新環(huán)境xxx屋彪, 再安裝需要的庫和pyinstaller。
conda activate xxx
激活绒尊, 激活成功后命令行前面會有 (xxx)
Anaconda 默認(rèn)環(huán)境是 (base)
在當(dāng)前Python腳本所在文件夾打開cmd/terminal, (windows的話摁住shift鼠標(biāo)右鍵畜挥,如果是powershell的話,你的conda可能無法切換到新的python環(huán)境xxx婴谱,需要anaconda的一些安裝設(shè)置)
pyinstaller -F fill_color.py
打包完后蟹但,新創(chuàng)建的文件夾(忘了具體哪個了)里就會有打包好的exe了。
下面附整體框架:
import os,sys
from openpyxl import load_workbook
from openpyxl.styles import PatternFill, colors
if __name__ == "__main__":
file_name = input("請輸入要處理的文件名:(例如:學(xué)生問卷.xlsx)\n")
try:
file = load_workbook("./"+file_name)
except:
print(f" {file_name} not found! Please put it alongside with this exe!(同一個文件夾內(nèi))")
input("exiting...")
exit()
print(f" {file_name} 已加載!")
sheet = file.worksheets[0]
fill = PatternFill(fill_type='solid',fgColor="BCEE68")
cthreshold = input("請輸入cor閾值(絕對值大于輸入數(shù)值的cell將被上色):\n")
pthreshold = input("請輸入p閾值:\n")
cthreshold, pthreshold = float(cthreshold), float(pthreshold)
def satisfied(cell):
text = cell.value
if text[:3] != "cor":
return False
c = text[:text.find('p')]
p = text[text.find('p'):]
try:
c = float(c.split(':')[-1])
p = float(p.split(":")[-1])
except:
print(c,p)
if p < pthreshold and abs(c) > cthreshold:
return True
else:
return False
for row in sheet.iter_rows(min_row=1, max_row=100, max_col=100):
for cell in row:
if cell.value is not None:
if satisfied(cell):
cell.fill = fill
else:
cell.fill = PatternFill(fgColor="FFFFFF")
new_file = input("請輸入保存的文件名(不需要再加'.xlsx', eg:version1):\n")
file.save(f"{new_file}.xlsx")
print("Done with saving! closing!")