Python中的那些名词

  • 序列: sequence

  • 映射: mapping

  • 集合: set

  • function: 一等对象(First order obj)

  • 闭包: closure

  • 函数装饰器: function decorater

  • 可调用对象: callable

  • 函数属性: function attribute

  • 内省: instrospection

  • 参数注解: parameter annotations

  • Python3种新特性之一的: nonlocal声明

  • class声明: class declaration

  • 引用: reference

  • 子程序: subroutine

  • 生成器: generator

  • 上下文管理器: context manager

  • 携程: coroutine

  • 特性: property

  • 类装饰器: class decorator

  • 元类: metaclass

  • REPL: read evel print loop (读取,求值,输出,循环的事件流)

doctest 测试工具

  • DocTest文档

Fluenty Simple Code

  • FluentyPythonSimplecode

魔法函数另一个昵称: dunder method (under-under-method) 其含义是双下方法

你可能感兴趣的:(Python中的那些名词)