一、环境准备
openpyxl
的安装可以直接使用pip
pip install openpyxl
打包使用比较常用的pyinstaller
, 这个先不着急安装
pip install pyinstaller
二、按照表格内容充填颜色
本文只是记录一项简单的功能,openpyxl更详细的用法请查阅Docs:https://openpyxl.readthedocs.io/en/stable/
- 文件读入
file_name = input("请输入要处理的文件名:(例如:学生问卷.xlsx)\n")
try:
file = load_workbook("./"+file_name)
except:
print(f" {file_name} not found! Please put it alongside with this exe!(同一个文件夹内)")
input("exiting...") #再按键一次后退出窗口
exit()
print(f" {file_name} 已加载!")
2.确定条件规则
def satisfied(cell):
"""
判断当前cell是否满足条件,根据实际情况修改以下内容
本例cell数据格式为: 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, "数据格式有误")
if p < pthreshold and abs(c) > cthreshold: # 这里pthreshold cthreshold直接用了外层变量,也可以通过参数传入
return True
else:
return False
3.处理工作表
sheet = file.worksheets[0] # 好像创建excel文件默认就有三个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") # 不满足目标条件,充填颜色为白色
# 处理完后,保存为新的Excel文件
new_file = input("请输入保存的文件名(不需要再加'.xlsx', eg:version1):\n")
file.save(f"{new_file}.xlsx")
print("Done with saving! closing!")
三、打包
pyinstaller
有个很弱智的地方就是不能只打包你Python脚本需要的库,因此在主环境下打包速度慢,得到的exe文件也很大。 可以通过创建一个新的python环境,里面只安装pyinstaller和脚本需要的库解决,如果是conda的话conda create -n xxx python=3.7
即可安装。安装后激活新环境xxx, 再安装需要的库和pyinstaller。
conda activate xxx
激活, 激活成功后命令行前面会有 (xxx)
Anaconda 默认环境是 (base)
在当前Python脚本所在文件夹打开cmd/terminal, (windows的话摁住shift鼠标右键,如果是powershell的话,你的conda可能无法切换到新的python环境xxx,需要anaconda的一些安装设置)
pyinstaller -F fill_color.py
打包完后,新创建的文件夹(忘了具体哪个了)里就会有打包好的exe了。
下面附整体框架:
import os,sys
from openpyxl import load_workbook
from openpyxl.styles import PatternFill, colors
if __name__ == "__main__":
file_name = input("请输入要处理的文件名:(例如:学生问卷.xlsx)\n")
try:
file = load_workbook("./"+file_name)
except:
print(f" {file_name} not found! Please put it alongside with this exe!(同一个文件夹内)")
input("exiting...")
exit()
print(f" {file_name} 已加载!")
sheet = file.worksheets[0]
fill = PatternFill(fill_type='solid',fgColor="BCEE68")
cthreshold = input("请输入cor阈值(绝对值大于输入数值的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!")
网友评论