用python修改excel表某一列内容的操作方法
作者:slandarer 时间:2022-01-22 20:51:29
想想你在一家公司里做表格,现在有一个下面这样的excel表摆在你面前,这是一个员工每个月工资的表,
现在假设,你要做的事情,是填充好后面几个月每个员工的编号,并且给员工随机生成一个2000到50000之间的随机数作为该月的工资,能拿多少全靠天意,你为了锻炼自己的python能力决定写一个相关的代码:
1 库引入
首先要引入库函数,要修改excel内容首先需要有openpyxl这个库,要生成随机数就要有random这个库
import openpyxl
import random
2 提取cell
我们首先提取编号:
编号是第B列
workbook=openpyxl.load_workbook('工资.xlsx')
table = workbook['Sheet1']
print(table['B'])
3 提取List
但此时我们发现提取出的是cell格式的数据而不是我们常见的list格式,我们可以通过以下方式获得list格式:
def cell2List(CELL):
LIST=[]
for cell in CELL:
LIST.append(cell.value)
return LIST
IDList=cell2List(table['B'])
print(IDList)
4 修改List数据
接下来我们要找到 ‘工作编号' 这几个字的位置
def get_location_in_list(x, target):
step = -1
items = list()
for i in range(x.count(target)):
y = x[step + 1:].index(target)
step = step + y + 1
items.append(step)
return items
IDPos=get_location_in_list(IDList, '工作编号')
print(IDPos)
接下来我们要将最前面的员工名称复制到后面,假设我们已经知道有5个人,且知道小标题占两个格子(‘工作编号' 这几个字后面跟着' ')
那么编写如下代码:
staffNum=5
for i in range(0,len(IDPos)):
IDList[IDPos[i]+1:IDPos[i]+2+staffNum]=IDList[IDPos[0]+1:IDPos[0]+2+staffNum]
print(IDList)
5 修改cell值
这时候我们只需要将只赋回cell即可:
tempi=0
for cell in table['B']:
cell.value=IDList[tempi]
tempi=tempi+1
这时候却发现如下报错:
这时因为我们有的格子是合并起来的
只需要将代码改成如下形式即可:
tempi=0
for cell in table['B']:
try:
cell.value=IDList[tempi]
except:
print('')
tempi=tempi+1
6 存储回原EXCEL或新EXCEL
主要靠更改后面参数,例如我想新存一个result.xlsx
workbook.save(filename = "result.xlsx")
7 其他格式修正(居左为例)
假如你发现,此时存储结果编号局中了:
我想将其居左,只需将前面代码修改为:
tempi=0
for cell in table['B']:
try:
cell.value=IDList[tempi]
cell.alignment = openpyxl.styles.Alignment(horizontal='left', vertical='center')
except:
print('')
tempi=tempi+1
8 随机生成工资
与前面类似,较为简单,建议看完整代码自己领悟嗷
9 完整代码
import openpyxl
import random
def cell2List(CELL):
LIST=[]
for cell in CELL:
LIST.append(cell.value)
return LIST
def get_location_in_list(x, target):
step = -1
items = list()
for i in range(x.count(target)):
y = x[step + 1:].index(target)
step = step + y + 1
items.append(step)
return items
workbook=openpyxl.load_workbook('工资.xlsx')
table = workbook['Sheet1']
IDList=cell2List(table['B'])
salaryList=cell2List(table['C'])
IDPos=get_location_in_list(IDList, '工作编号')
staffNum=5
for i in range(0,len(IDPos)):
IDList[IDPos[i]+1:IDPos[i]+2+staffNum]=IDList[IDPos[0]+1:IDPos[0]+2+staffNum]
for j in range(IDPos[i]+1,IDPos[i]+2+staffNum):
salaryList[j]=1
# tempi=0
# for cell in table['B']:
# cell.value=IDList[tempi]
# tempi=tempi+1
tempi=0
for cell in table['B']:
try:
cell.value=IDList[tempi]
cell.alignment = openpyxl.styles.Alignment(horizontal='left', vertical='center')
except:
print('')
tempi=tempi+1
tempi=0
for cell in table['C']:
try:
if salaryList[tempi]==1:
cell.value=random.randint(2000,50000)
except:
print('')
tempi=tempi+1
workbook.save(filename = "result.xlsx")
效果:
来源:https://blog.csdn.net/slandarer/article/details/117777396
标签:python,excel,内容
0
投稿
猜你喜欢
原生Javascript封装的一个AJAX函数分享
2024-04-30 10:15:25
JS实现css边框样式设置工具
2008-05-25 16:22:00
简单的Python调度器Schedule详解
2021-09-15 09:49:19
pandas数据合并之pd.concat()用法详解
2022-10-26 20:22:38
Django通过设置CORS解决跨域问题
2023-05-22 14:18:41
发一新浪招聘的图片滚动控制JS效果
2011-08-10 19:17:25
JAVA正则表达式及字符串的替换与分解相关知识总结
2023-02-01 20:59:53
django数据模型on_delete, db_constraint的使用详解
2023-02-16 04:48:06
django formset实现数据表的批量操作的示例代码
2023-10-10 15:20:21
tensorflow+k-means聚类简单实现猫狗图像分类的方法
2022-11-04 10:45:27
Python 函数那不为人知的一面
2022-09-24 10:03:31
Mysql实战练习之简单图书管理系统
2024-01-17 14:09:32
MySQL数据库主从复制原理及作用分析
2024-01-26 11:42:14
详解Windows下PyCharm安装Numpy包及无法安装问题解决方案
2021-01-27 11:58:32
Go并发编程之sync.Once使用实例详解
2024-04-26 17:21:23
opencv实现答题卡识别
2021-02-28 12:40:05
opencv python 图片读取与显示图片窗口未响应问题的解决
2021-05-15 22:08:53
如何在Python中导入EXCEL数据
2022-08-01 01:51:01
js+css在交互上的应用
2024-04-17 10:37:49
py-charm延长试用期限实例
2023-03-05 23:00:42