注意:有些函数与 Python2.x 变化不大,会直接跳转到 Python2.x 教程下的内置函数说明,大家要注意下哈。

内置函数
abs() dict() help() min() setattr()
all() dir() hex() next() slice()
any() divmod() id() object() sorted()
ascii() enumerate() input() oct() staticmethod()
bin() eval() int() open() str()
bool() exec() isinstance() ord() sum()
bytearray() filter() issubclass() pow() super()
bytes() float() iter() print() tuple()
callable() format() len() property() type()
chr() frozenset() list() range() vars()
classmethod() getattr() locals() repr() zip()
compile() globals() map() reversed() import()
complex() hasattr() max() round()
delattr() hash() memoryview() set()

Python3 日期和时间
Python MongoDB

1 篇笔记 写笔记

  1. redhandszho*cc@qq.com参考地址130Python 调试方法1、printprint(‘here’) # 可以发现某段逻辑是否执行 # 打印出变量的内容2、assertassert false, ‘blabla’ # 如果条件不成立,则打印出 ‘blabla’ 并抛出AssertionError异常3、debugger**可以通过 pdb、IDE 等工具进行调试。调试的具体方法这里不展开。Python 中有两个内置方法在这里也很有帮助:
    • locals: 执行 locals() 之后, 返回一个字典, 包含(current scope)当前范围下的局部变量。
    • globals: 执行 globals() 之后, 返回一个字典, 包含(current scope)当前范围下的全局变量。