mu_tou_man

导航

 

2022年4月10日

摘要: #TUPLE########################### a = (1, 2, 3, 4, 5, "a") # tuple增删查(不支持改) # 增 b = (7, 8) c = a + b d = a.__add__(b) print(c) print(d) # 删 b = a[0:3] 阅读全文
posted @ 2022-04-10 21:57 mu_tou_man 阅读(22) 评论(0) 推荐(0) 编辑
 

2022年4月8日

摘要: 本文转自:https://www.cnblogs.com/mikigo/p/13334753.html unittest 模块可以通过命令行运行模块、类和独立测试方法的测试: python -m unittest test_module1 test_module2 python -m unittes 阅读全文
posted @ 2022-04-08 12:25 mu_tou_man 阅读(193) 评论(0) 推荐(0) 编辑
 

2022年4月7日

摘要: 本文转自codesheep https://mp.weixin.qq.com/s/oMDCi0kLpn31T00QkxfkQA 阅读全文
posted @ 2022-04-07 20:23 mu_tou_man 阅读(16) 评论(0) 推荐(0) 编辑
 

2022年4月6日

摘要: 本文转自:https://blog.csdn.net/fashion2014/article/details/78826299 #1.查询平均成绩大于等于60分的同学的学生编号和学生姓名和平均成绩 select a.s_id as id,a.s_name as name,ROUND(AVG(b.s_ 阅读全文
posted @ 2022-04-06 17:43 mu_tou_man 阅读(33) 评论(0) 推荐(0) 编辑
 

2022年4月5日

摘要: 查询语句执行顺序: 1、FROM table1 left join table2 on 将table1和table2中的数据产生笛卡尔积,生成Temp1 2、JOIN table2 所以先是确定表,再确定关联条件 3、ON table1.column = table2.columu 确定表的绑定条件 阅读全文
posted @ 2022-04-05 20:27 mu_tou_man 阅读(29) 评论(0) 推荐(0) 编辑
 

2022年1月17日

摘要: # -*-coding:utf8 -*- # from compiler.ast import flatten import os import traceback from PIL import Image import numpy as np from numpy import * from i 阅读全文
posted @ 2022-01-17 19:15 mu_tou_man 阅读(42) 评论(0) 推荐(0) 编辑
 

2021年3月3日

摘要: 阅读全文
posted @ 2021-03-03 21:53 mu_tou_man 阅读(44) 评论(0) 推荐(0) 编辑
 

2021年2月18日

摘要: 转自:https://blog.csdn.net/xingjing1226/article/details/81977129 https://baijiahao.baidu.com/s?id=1658121385190352035&wfr=spider&for=pc Java中线程的状态分为6种。 阅读全文
posted @ 2021-02-18 21:49 mu_tou_man 阅读(79) 评论(0) 推荐(0) 编辑
 

2020年11月18日

摘要: https://blog.csdn.net/jiangyu1013/article/details/84397366 阅读全文
posted @ 2020-11-18 22:12 mu_tou_man 阅读(78) 评论(0) 推荐(0) 编辑
 

2019年3月4日

摘要: 1.线程通常有五种状态,创建,就绪,运行、阻塞和死亡状态。2.阻塞的情况又分为三种:(1)、等待阻塞:运行的线程执行wait()方法,该线程会释放占用的所有资源,JVM会把该线程放入“等待池”中。进入这个状态后,是不能自动唤醒的,必须依靠其他线程调用notify()或notifyAll()方法才能被 阅读全文
posted @ 2019-03-04 16:38 mu_tou_man 阅读(121) 评论(0) 推荐(0) 编辑