摘要: 1.最近要日语考试了,写了个随机出假名的简单程序,效果图如下: 2.哈勃查毒检测 该版本包含浊音不包含拗音,点击下载 该版本包含浊音、拗音,点击下载 阅读全文
posted @ 2023-11-17 11:13 seonwee 阅读(332) 评论(3) 推荐(0)
摘要: 起因:购买的esp32cam烧录底座(ch340)无法刷入MicroPython,将ch340的驱动重装后,即使刷入也不能正常连接thonny。 看了好几个csdn的帖子也无济于事,后看到B站up邪恶的胖次菌的视频esp32cam烧录笔记openmv/micropython找到解决办法。 按照视频中 阅读全文
posted @ 2023-08-07 14:03 seonwee 阅读(1906) 评论(0) 推荐(0)
摘要: ### 1、statistics按钮的使用![image](https://img2023.cnblogs.com/blog/2286357/202306/2286357-20230609215628806-1452110841.png) ### 2、inspectors按钮的使用![image]( 阅读全文
posted @ 2023-06-09 22:15 seonwee 阅读(21) 评论(0) 推荐(0)
摘要: ![image](https://img2023.cnblogs.com/blog/2286357/202306/2286357-20230609154113629-879530572.png) 阅读全文
posted @ 2023-06-09 15:41 seonwee 阅读(17) 评论(0) 推荐(0)
摘要: package lanqiao; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java. 阅读全文
posted @ 2022-04-09 00:34 seonwee 阅读(39) 评论(0) 推荐(0)
摘要: import java.util.*; import java.io.*; public class Main{ public static void main(String[] args) throws IOException { BufferedReader reader = new Buffe 阅读全文
posted @ 2022-04-05 18:58 seonwee 阅读(104) 评论(0) 推荐(0)
摘要: package daweiguo.other; /** * @Author DaWeiGuo * @Date 2022/3/19 21:04 * @Desc: */ public class HeapSort { public static void main(String[] args) { He 阅读全文
posted @ 2022-03-21 16:51 seonwee 阅读(33) 评论(0) 推荐(0)
摘要: package daweiguo.other; import java.util.Arrays; /** * @Author DaWeiGuo * @Date 2022/3/21 16:16 * @Desc: 差分数组 */ public class DifferenceArray { public 阅读全文
posted @ 2022-03-21 16:51 seonwee 阅读(214) 评论(0) 推荐(0)
摘要: CTRL+H 查看类结构 CTRL+D 复制当前行代码到下一行 阅读全文
posted @ 2022-01-12 20:05 seonwee 阅读(31) 评论(0) 推荐(0)
摘要: from openpyxl import * class excel(): def __init__(self,file): self.file = file self.wb = load_workbook(self.file) sheets = self.wb.get_sheet_names() 阅读全文
posted @ 2021-11-21 22:53 seonwee 阅读(96) 评论(0) 推荐(0)