标签: Python

2 篇文章

Reading:《Python_Concurrency_with_asyncio–Matthew_Fowler》
Reading:《Python_Concurrency_with_asyncio--Matthew_Fowler》 Ch1 Python asyncio是一个使用单线程事件循环模型的异步库,不止可以用于IO密集任务,也可以用于CPU密集型任务 IO密集与计算密集任务实例: ​​ 理解并发、并行和多任务: python多进程在windows下为什么要…
thumbnail
import与包管理
import与包管理 import与from import 使用对象:import只可以对文件级别的使用,from则可以对函数,类使用 import math​ from math import sin​ from...import...只可以from前的包放点,import后必须直接是名字不能带点 ​​ 包的引用关系(命名空间)import将依次…