摘要: 一、进程 1.1、方式一 from multiprocessing import Process import time #方式一 def task(name): print(f"my name is {name},启动时间") time.sleep(2) print(f"my name is {n 阅读全文
posted @ 2020-10-06 17:08 taotaozh 阅读(987) 评论(0) 推荐(0) 编辑
摘要: python之网络编程 一、网络开发架构 1.1、C/S架构: 常见的:QQ、微信 优点: 可以离线使用/功能更完善/安全性更高 client 客户端 我们需要安装的 server端 在服务器 1.2、B/S架构: 优点: 不用安装就可以使用 统一PC端用户的入口 常见的:百度、博客园、谷歌 B:b 阅读全文
posted @ 2020-10-06 16:02 taotaozh 阅读(178) 评论(0) 推荐(0) 编辑