并发:假的多任务
并行:真的多任务
实现多线程用——threading模块
import threading
import timedef shuru():for i in range(1,4):print("正在输入")time.sleep(1)
def shuchu():for i in range(1,4):print("正在输出")time.sle…
Windows / Linux dir 命令 1. dir2. dir *.* > data.txt3. dir - list directory contentsReferences 1. dir
显示目录的文件和子目录的列表。
Microsoft Windows [版本 10.0.18363.900]
(c) 2019 Microsoft Corporation。保留所有权利。C:\Users\cheng>dir驱动器 C 中…
//基于注解
Mapper
public interface reboudapt {Select("select * from dept")List<dept> huoqudept();//删除语句Delete("delete from dept where id #{id}")void deletesc(Integer id);//增加语句Insert("insert into dept(name, create_t…