-
- 分享
这是添加超链接到excel的第二版的修改
-
gaming1990 2025-6-26 14:06
-
from pathlib import Path from datetime import datetime from openpyxl import load_workbook from openpyxl.styles import Font,Alignment,numbers,Border, Side class AppWork: """ 程序 """ def __init__(self): """ 初始 ...
-
0 个评论
-
- 分享
用python修改以前做的一个批处理脚本,并学习一下openpyxl的用法
-
gaming1990 2025-6-25 11:07
-
批处理脚本内容: @echo off :: 说明→要更改pathaa的内容并保存后运行。 :: 复制文本内的内容到excel中,并选中数据,分列,以;分号为分隔符 :: pathaa=暂时还不能处理带有,|等特殊字符的路径名 echo 复制文本内的内容到excel中,并选中数据,分列,以;分号为分隔符 echo 请输入文件路径(暂时还不能 ...
-
0 个评论
-
- 分享
中招
-
tommyyu 2025-6-23 22:23
-
中招结束。
-
0 个评论
-
- 分享
信竞手感回升
-
tommyyu 2025-5-17 21:45
-
一年没碰信竞了,今天偷偷试着做了道题,一年前至少提交了5遍都 WA ,今天一做就 AC 了;包括化竞的做题手感也在最近这几个月回去学 whk 的时候提升了。有时候学习或许需要放松放松再接着学 但中考完就没什么时间放松了 :( 竞赛牲一年唯二的假期都只有一两周
-
3 次阅读|3 个评论
热度 2
-
- 分享
2025年5月11日
-
gainer 2025-5-11 17:45
-
学习进展缓慢 翻译 搜索 复制 学完了067讲 作业还没做完 距离085讲还有好远
-
1 次阅读|0 个评论
-
- 分享
二检
-
tommyyu 2025-5-10 12:17
-
二检考完了,难度逆天
-
1 次阅读|0 个评论
热度 1
-
- 分享
找出包含特定键值对的对象
-
hayeee 2025-4-22 04:42
-
找出包含特定键值对的对象 Make a function that looks through an array of objects (first argument) and returns an array of all objects that have matching name and value pairs (second argument). Each name and value pair of the source object has to be present in the object from the collection if ...
-
0 个评论
-
- 分享
四种方法写费波纳希数列(第四种用yield)
-
Maliaty 2025-4-4 12:09
-
def fib (n,computed={ 1 : 1 , 2 : 1 }): if n in computed: return computed computed =fib(n- 1 ,computed)+fib(n- 2 ,computed) return computed fib_list= print (fib_list) def fibonacci (n): fib_list = # 初始化前两项 for _ in range (n - 2 ...
-
1 次阅读|0 个评论
本页有 2 篇日志因作者的隐私设置或未通过审核而隐藏