Loading

08 2021 档案

摘要:Python3 中线程常用的两个模块为: _thread threeading thread 模块已经废弃,在 Python3 中使用 threading 模块代替。(因为兼容性,Python3 将 thread 重命名为 _thread ) 使用线程的两种方式: 函数 用类包装线程对象 函数 调用 阅读全文
posted @ 2021-08-17 21:20 紫曜花 阅读(482) 评论(0) 推荐(0)
摘要:在linux中输入zip 或 unzip 查看是否安装了相应命令。若没有,则按照下列安装 yum install -y zip unzip 压缩文件 zip <filename.zip> <filename> 解压文件 unzip filename.zip 不指定目录的话不知道文件会解压到哪里(我的 阅读全文
posted @ 2021-08-11 23:44 紫曜花 阅读(80) 评论(0) 推荐(0)