背景需求:
前期代码制作出2024年第一学期校历,按照5天一周的方法,提取实际工作日。制作成“周计划教案”使用的长日期、短日期
-【办公类-53--01】2024年第一学期校历制作(星火讯飞提取实际工作日,5天一行)-CSDN博客文章浏览阅读489次,点赞19次,收藏5次。-【办公类-53--01】2024年第一学期校历制作(星火讯飞提取实际工作日,5天一行)https://blog.csdn.net/reasonsummer/article/details/140773531【办公类-53-02】2024年第一学期校历制作(“年月日去0”版、周计划短日期、教案长日期)-CSDN博客文章浏览阅读334次,点赞11次,收藏4次。【办公类-53-02】2024年第一学期校历制作(“年月日去0”版、周计划短日期、教案长日期)https://blog.csdn.net/reasonsummer/article/details/140822416
本学期,我又脱离班级,真舍不得中4班这批聪明守规则的孩子(中4班都找不出一位调皮的孩子,他们表现太优秀,领导就安排给了其他学校来轮岗一年的骨干老师了)
所以我开始机动班。每周要带四个半天的下午班。通常是带每个年级的组长班。每个班级滚动轮流带。因而我需要一份“排班表”
去年的一份排班表模板,但是日期都是每周手动输入的,星期也都是周一到周五。
因为是复制原来的日期模版,很容易出现忘记修改日期的情况。
今年我也想基于已经生成实际工作日,跳过节日、周三,轮流输入每个班级。先做一份基础模板的“排班表”
首先我希望日期和星期写再一起,所以日期用了简写的“月/日(星期)
其次,我希望班级能够跳过节日和周三,滚动轮流,而不是直接跳过某个班级。
一共有2个代码
第一个代码:生成月/日(星期)格式的基本日期
'''
2024学年第一学期校历排版,制作教案用日期
星火讯飞 阿夏
2024年7月31日
'''
# -*- coding: utf-8 -*-
import datetime
import openpyxl
from openpyxl.styles import Alignment, PatternFill
import time
# for
# 创建一个新的Excel工作簿
workbook = openpyxl.Workbook()
sheet = workbook.active
# 设置标题行
title_row = ["周次", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"]
sheet.append(title_row)
# 设置日期范围
start_date = datetime.date(2024, 9, 2)
end_date = datetime.date(2025, 1, 17)
# 计算周数和日期
current_week = 1
current_day = start_date
while current_day <= end_date:
# 获取当前周的第一天(星期一)
week_start = current_day - datetime.timedelta(days=current_day.weekday())
# 如果当前日期是新的一周,添加新行并更新周数
if current_day == week_start:
sheet.append([f"第{current_week:02d}周"])
current_week += 1
# 在正确的单元格中添加日期
column_index = current_day.weekday() + 2 # 从B列开始,所以加2
cell = sheet.cell(row=current_week, column=column_index)
# 不同的表示方法
# cell.value = current_day.strftime("%Y-%m-%d") # 2024-09-01
# cell.value = current_day.strftime("%Y-%#m-%#d") # 2024-9-1
# cell.value = current_day.strftime("%m/%d") # 09-01
cell.value = current_day.strftime("%#m/%#d (%a)")
print(cell.value )
# 格式化日期为 "月/日 (星期)" 形式
# cell.value = current_day.strftime('%Y{y}%m{m}%d{d}').format(y='年', m='月', d='日') # 2024年09月01日
# cell.value = current_day.strftime('%Y{y}%#m{m}%#d{d}').format(y='年', m='月', d='日') # 2024年9月1日
cell.alignment = Alignment(horizontal='center', vertical='center')
# 如果日期不等于周六和周日,就把这个单元格填充为浅黄色
if current_day.weekday() not in (5, 6):
light_yellow_fill = PatternFill(start_color="FFFF00", end_color="FFFF00", fill_type="solid")
cell.fill = light_yellow_fill
# 如果日期等于2024-09-14、2024-10-12、9月16日、9月17日、10月1日到10月8日、2025年1月1日,单元格填充为白色
special_dates = [datetime.date(2024, 9, 14), datetime.date(2024, 10, 12), datetime.date(2024, 9, 16), datetime.date(2024, 9, 17)]
for i in range(1, 8):
special_dates.append(datetime.date(2024, 10, i))
special_dates.append(datetime.date(2025, 1, 1))
if current_day in special_dates:
white_fill = PatternFill(start_color="FFFFFF", end_color="FFFFFF", fill_type="solid")
cell.fill = white_fill
# 如果日期等于2024-09-14或2024-10-12,单元格填充为黄色
if current_day == datetime.date(2024, 9, 14) or current_day == datetime.date(2024, 9, 29) or current_day == datetime.date(2024, 10, 12):
yellow_fill = PatternFill(start_color="FFFF00", end_color="FFFF00", fill_type="solid")
cell.fill = yellow_fill
# 移动到下一天
current_day += datetime.timedelta(days=1)
# 每个单元格最后【-4:-1】的内容替换中文
weekdays_chinese = {
'Mon': '一',
'Tue': '二',
'Wed': '三',
'Thu': '四',
'Fri': '五',
'Sat': '六',
'Sun': '日'
}
# 遍历工作表中的所有单元格,替换星期英文缩写为中文
for row in sheet.iter_rows():
for cell in row:
if isinstance(cell.value, str) and len(cell.value) >= 4:
last_four_chars = cell.value[-4:-1]
if last_four_chars in weekdays_chinese:
cell.value = cell.value[:-4] + weekdays_chinese[last_four_chars]+')'
path=r'C:\Users\jg2yXRZ\OneDrive\桌面\校历排版'
# 保存工作簿
workbook.save(path+r"\2024学年第一学期校历排版.xlsx")
time.sleep(2)
import openpyxl
from openpyxl.styles import PatternFill
# 打开已存在的Excel文件
workbook = openpyxl.load_workbook(path+r"\2024学年第一学期校历排版.xlsx")
sheet = workbook.active
# 设置黄色填充样式
yellow_fill = PatternFill(start_color="FFFF00", end_color="FFFF00", fill_type="solid")
# 遍历每一行
for row in range(2, sheet.max_row + 1):
# 读取每行里面的所有黄色单元格,复制到I列开始的单元格
yellow_cells = []
for col in range(2, sheet.max_column + 1):
cell = sheet.cell(row=row, column=col)
if cell.fill == yellow_fill:
yellow_cells.append(cell.value)
for index, value in enumerate(yellow_cells):
sheet.cell(row=row, column=10+index).value = value
# 定义黄色填充样式
yellow_fill = PatternFill(start_color="FFFF00", end_color="FFFF00", fill_type="solid")
# 设置列宽
for col in range(1, 30):
sheet.column_dimensions[openpyxl.utils.get_column_letter(col)].width = 15
# for col in range(9, 12):
# sheet.column_dimensions[openpyxl.utils.get_column_letter(col)].width = 35
# 设置单元格文字居中
for row in sheet.iter_rows():
for cell in row:
cell.alignment = openpyxl.styles.Alignment(horizontal='center', vertical='center')
workbook.save(path+r"\2024学年第一学期校历排版.xlsx")
workbook.save(path+r"\2024学年第一学期校历排版(修改).xlsx")
生成了两个文件,
校历排版.xlsx
打开校历排版(修改).xlsx
手动调整右侧的日期(改成5天一周
第二个代码:对“修改.xlsx"进行周次、日期(星期)的提取,读取所有的日期做成列表,4个滚动班做成列表。如果日期等于“节日”,就写入节日名称,如果日期中-2的文字是三,就写入空,其他都写入班级(用n+=1)
'''
2024学年第一学期校历排版,制作教案用日期 提取长日期和短日期
星火讯飞 阿夏
2024年7月31日
'''
import openpyxl
from openpyxl.styles import Alignment
from openpyxl.styles import Font
from openpyxl.styles import Border, Side
path=r'C:\Users\jg2yXRZ\OneDrive\桌面\校历排版'
# 打开原始Excel文件
workbook = openpyxl.load_workbook(path+r"\2024学年第一学期校历排版(修改).xlsx")
sheet = workbook.active
# 删除B列到I列 反复删除第2列
for x in range(8):
for col in range(2,3): # B列是第2列,I列是第9列,所以范围是2到9
sheet.delete_cols(col)
# 读取B2-F21的数字
# 创建一个空列表来存储单元格内容
cell_values = []
# 遍历B2到F21单元格
for row in range(2, 22):
for col in ['B', 'C', 'D', 'E', 'F']:
cell = sheet[f'{col}{row}']
cell_values.append(cell.value)
print(cell_values)
print(len(cell_values))
# 100
# 插入班级 (暂时定组长班),有20周
c=['托1(一)','小3(二)','中3(总)','大3(总)']*30
print(c)
print(len(c))
# 120
p=[]
m=0
for d in range(len(cell_values)):
# 如果等于周三、等于国庆、中秋、元旦,就添加空
if cell_values[d]=="中秋" or cell_values[d]=="元旦" or cell_values[d]=="国庆":
t2=cell_values[d]
p.append(t2)
elif cell_values[d][-2:-1]=='三':
t1='空'
p.append(t1)
else:
p.append(c[m])
m+=1
print(p)
print(len(p))
# 105
result = []
for i in range(0, len(p), 5):
result.append("上午")
for b in range(5):
result.append('')
result.append("下午")
result.extend(p[i:i+5])
print(result)
print(len(result))
# 126
# 插入空行
n=2# 第2行开始添加空行
# 遍历原始工作表的每一行
for row in sheet.iter_rows():
# 将当前行的内容复制到新工作表的一行
for cell in row:
sheet[cell.coordinate].value = cell.value
# 在新工作表的下一行插入一个空行
for y in range(3): # 一条插入3个空行
sheet.insert_rows(row[0].row + n)
n+=1
# 写入数据到指定的单元格范围
row_start = 3
col_start = 1
for i in range(0, len(result), 12):
end_index = min(i + 12, len(result))
data = result[i:end_index]
for j, value in enumerate(data):
sheet.cell(row=row_start + (j // 6), column=col_start + (j % 6), value=value)
row_start += 4
# 设置单元格居中对齐
for row in sheet.iter_rows():
for cell in row:
# 单元格文字居中
cell.alignment = Alignment(horizontal='center', vertical='center')
# 设置字体,加粗
cell.font = Font(name='宋体', size=15, bold=True)
# 设置边框样式
if cell.value is not None:
cell.border = Border(left=Side(style='thin'), right=Side(style='thin'), top=Side(style='thin'), bottom=Side(style='thin'))
# 定义边框样式
# thin_border = Border(left=Side(style='thin', color="000000"),
# right=Side(style='thin', color="000000"),
# top=Side(style='thin', color="000000"),
# bottom=Side(style='thin', color="000000"))
# # 设置边框宽度为2.25磅(注意:openpyxl不支持直接设置边框宽度,这里我们使用最细的边框作为替代)
# thick_border = Border(left=Side(style='thick', color="000000"),
# right=Side(style='thick', color="000000"),
# top=Side(style='thick', color="000000"),
# bottom=Side(style='thick', color="000000"))
# # 设置单元格边框
# for row in range(1, 80):
# for col in range(1, 6):
# cell = sheet.cell(row=row, column=col)
# if (row - 1) % 4 == 0:
# cell.border = thick_border
# else:
# cell.border = thin_border
# # 保存新的Excel文件
workbook.save(path+r"\2024学年第一学期校历排版(排班表).xlsx")