核心命令:python -m pydoc 查询某包:python -m pydoc 包名 示例: C:\Users\xxx>python -m pydoc pydoc - the Python documentation tool pydoc <name> ... Show text documentation on something. <name> may be the name of a Python keyword, topic, function, module,…
Redis查看帮助文档的方式,目前我用到的主要有两种: 1.访问官方文档: Redis文档 2.在redis-cli中通过命令查看,输入"?"或者"help"回车: help @group 查看group的一些列命令说明,group为操作的分组,比如list为一组操作,hash为一组操作. help 查看一个命令的详情,比如help lpop能查看lpop的操作详情. help 逐一列举出所有的group和command.…