Python 的协程 发表评论 / Python, 专项 前言 最近在看部分Python源码时, 发现了async 这个关键字. 查了一下发现了Python中的协程. […] Python 的协程 Read More »
Python元组是什么 发表评论 / Python, 专项 引出 在使用Python过程中,列表、集合和字典是比较常用的数据结构。 列表简单说就是数组,不对,它就是数组 Python元组是什么 Read More »
Python 部分系统类的常用方法整理 发表评论 / Python, 专项 下面是常用的几个系统类的常用方法整理: list: 列表 [1, 2,…] append(x) 将x添加到 Python 部分系统类的常用方法整理 Read More »
Python中的特殊属性与方法 发表评论 / Python, 专项 模块的特殊属性 __doc__ 模块的说明文档 __all__ 指明模块希望被使用的属性、类和方法 __fil Python中的特殊属性与方法 Read More »
Python关键字 发表评论 / Python, 专项 assert 断言,当关键字后的条件为假时,程序崩溃,并抛出 AssertionError 异常 del 删除 Python关键字 Read More »
Python的闭包 发表评论 / Python, 专项 什么是闭包 #定义一个函数 def test(number): #在函数内部再定义一个函数,并且这个函数用 Python的闭包 Read More »