René's URL Explorer Experiment


Title: Python 3 备忘清单 & python cheatsheet & Quick Reference

direct link

Domain: ref.mingming.dev

authorjaywcjlove
licenseMIT
fundinghttps://jaywcjlove.github.io/#/sponsor

Links:

Quick Referencehttps://ref.mingming.dev/index.html
搜索⌘Kjavascript:void(0);
编辑https://github.com/jaywcjlove/reference/blob/main/docs/python.md
https://github.com/jaywcjlove/reference
https://ref.mingming.dev/docs/python.html#python-3-备忘清单
Python 3https://www.python.org/
入门https://ref.mingming.dev/docs/python.html#入门
介绍https://ref.mingming.dev/docs/python.html#介绍
控制台打印https://ref.mingming.dev/docs/python.html#控制台打印
变量https://ref.mingming.dev/docs/python.html#变量
内置数据类型https://ref.mingming.dev/docs/python.html#内置数据类型
字符串切片https://ref.mingming.dev/docs/python.html#字符串切片
列表https://ref.mingming.dev/docs/python.html#列表
判断https://ref.mingming.dev/docs/python.html#判断
循环https://ref.mingming.dev/docs/python.html#循环
函数https://ref.mingming.dev/docs/python.html#函数
文件处理https://ref.mingming.dev/docs/python.html#文件处理
算术https://ref.mingming.dev/docs/python.html#算术
加等于https://ref.mingming.dev/docs/python.html#加等于
f-字符串 (Python 3.6+)https://ref.mingming.dev/docs/python.html#f-字符串-python-36
Python 数据类型https://ref.mingming.dev/docs/python.html#python-数据类型
字符串https://ref.mingming.dev/docs/python.html#字符串
数值https://ref.mingming.dev/docs/python.html#数值
布尔值https://ref.mingming.dev/docs/python.html#布尔值
列表https://ref.mingming.dev/docs/python.html#列表-1
元组https://ref.mingming.dev/docs/python.html#元组
集合https://ref.mingming.dev/docs/python.html#集合
字典https://ref.mingming.dev/docs/python.html#字典
类型转换https://ref.mingming.dev/docs/python.html#类型转换
转换为整数https://ref.mingming.dev/docs/python.html#转换为整数
转换为浮点数https://ref.mingming.dev/docs/python.html#转换为浮点数
转换为字符串https://ref.mingming.dev/docs/python.html#转换为字符串
Python 字符串https://ref.mingming.dev/docs/python.html#python-字符串
下标访问https://ref.mingming.dev/docs/python.html#下标访问
循环https://ref.mingming.dev/docs/python.html#循环-1
切割字符串https://ref.mingming.dev/docs/python.html#切割字符串
步长https://ref.mingming.dev/docs/python.html#步长
获取长度https://ref.mingming.dev/docs/python.html#获取长度
重复多次https://ref.mingming.dev/docs/python.html#重复多次
存在性判断https://ref.mingming.dev/docs/python.html#存在性判断
字符串拼接https://ref.mingming.dev/docs/python.html#字符串拼接
格式化https://ref.mingming.dev/docs/python.html#格式化
format() 方法https://ref.mingming.dev/docs/python.html#format-方法
转义符号https://ref.mingming.dev/docs/python.html#转义符号
控制台输入https://ref.mingming.dev/docs/python.html#控制台输入
头尾判断https://ref.mingming.dev/docs/python.html#头尾判断
插入分隔符拼接https://ref.mingming.dev/docs/python.html#插入分隔符拼接
Python f-字符串 (Python 3.6+)https://ref.mingming.dev/docs/python.html#python-f-字符串-python-36
f-字符串 用法https://ref.mingming.dev/docs/python.html#f-字符串-用法
填充对齐https://ref.mingming.dev/docs/python.html#填充对齐
按类型输出https://ref.mingming.dev/docs/python.html#按类型输出
显示正负号https://ref.mingming.dev/docs/python.html#显示正负号
其它https://ref.mingming.dev/docs/python.html#其它
Python 列表https://ref.mingming.dev/docs/python.html#python-列表
定义https://ref.mingming.dev/docs/python.html#定义
生成https://ref.mingming.dev/docs/python.html#生成
添加元素https://ref.mingming.dev/docs/python.html#添加元素
切片https://ref.mingming.dev/docs/python.html#切片
切片https://ref.mingming.dev/docs/python.html#切片-1
省略索引https://ref.mingming.dev/docs/python.html#省略索引
间隔索引https://ref.mingming.dev/docs/python.html#间隔索引
删除https://ref.mingming.dev/docs/python.html#删除
列表边界https://ref.mingming.dev/docs/python.html#列表边界
连接https://ref.mingming.dev/docs/python.html#连接
排序和反转https://ref.mingming.dev/docs/python.html#排序和反转
计数https://ref.mingming.dev/docs/python.html#计数
重复https://ref.mingming.dev/docs/python.html#重复
搜索https://ref.mingming.dev/docs/python.html#搜索
Python 判断https://ref.mingming.dev/docs/python.html#python-判断
if-elsehttps://ref.mingming.dev/docs/python.html#if-else
if-elif-elsehttps://ref.mingming.dev/docs/python.html#if-elif-else
三目运算https://ref.mingming.dev/docs/python.html#三目运算
Python 循环https://ref.mingming.dev/docs/python.html#python-循环
一般形式https://ref.mingming.dev/docs/python.html#一般形式
带索引https://ref.mingming.dev/docs/python.html#带索引
while 循环https://ref.mingming.dev/docs/python.html#while-循环
跳出循环https://ref.mingming.dev/docs/python.html#跳出循环
跳过一轮循环https://ref.mingming.dev/docs/python.html#跳过一轮循环
范围循环https://ref.mingming.dev/docs/python.html#范围循环
使用 zip()https://ref.mingming.dev/docs/python.html#使用-zip
列表生成式https://ref.mingming.dev/docs/python.html#列表生成式
Python 函数https://ref.mingming.dev/docs/python.html#python-函数
基础https://ref.mingming.dev/docs/python.html#基础
返回https://ref.mingming.dev/docs/python.html#返回
位置参数https://ref.mingming.dev/docs/python.html#位置参数
关键字参数https://ref.mingming.dev/docs/python.html#关键字参数
返回多个https://ref.mingming.dev/docs/python.html#返回多个
默认值https://ref.mingming.dev/docs/python.html#默认值
匿名函数https://ref.mingming.dev/docs/python.html#匿名函数
Python 解包https://ref.mingming.dev/docs/python.html#python-解包
等量解包https://ref.mingming.dev/docs/python.html#等量解包
适量解包https://ref.mingming.dev/docs/python.html#适量解包
过量解包https://ref.mingming.dev/docs/python.html#过量解包
解包取左边https://ref.mingming.dev/docs/python.html#解包取左边
解包取两边https://ref.mingming.dev/docs/python.html#解包取两边
解包取右边https://ref.mingming.dev/docs/python.html#解包取右边
解包集合https://ref.mingming.dev/docs/python.html#解包集合
解包迭代器https://ref.mingming.dev/docs/python.html#解包迭代器
解包字典https://ref.mingming.dev/docs/python.html#解包字典
生成式中的解包https://ref.mingming.dev/docs/python.html#生成式中的解包
迭代中解包https://ref.mingming.dev/docs/python.html#迭代中解包
函数中的解包https://ref.mingming.dev/docs/python.html#函数中的解包
Python 模块https://ref.mingming.dev/docs/python.html#python-模块
导入模块https://ref.mingming.dev/docs/python.html#导入模块
从一个模块导入https://ref.mingming.dev/docs/python.html#从一个模块导入
导入一个模块的全部https://ref.mingming.dev/docs/python.html#导入一个模块的全部
给模块起别名https://ref.mingming.dev/docs/python.html#给模块起别名
浏览模块的函数和属性https://ref.mingming.dev/docs/python.html#浏览模块的函数和属性
Python 文件处理https://ref.mingming.dev/docs/python.html#python-文件处理
读取文件https://ref.mingming.dev/docs/python.html#读取文件
逐行https://ref.mingming.dev/docs/python.html#逐行
带行号https://ref.mingming.dev/docs/python.html#带行号
字符串https://ref.mingming.dev/docs/python.html#字符串-1
写入一个字符串https://ref.mingming.dev/docs/python.html#写入一个字符串
读取一个字符串https://ref.mingming.dev/docs/python.html#读取一个字符串
对象https://ref.mingming.dev/docs/python.html#对象
写一个对象https://ref.mingming.dev/docs/python.html#写一个对象
读取对象https://ref.mingming.dev/docs/python.html#读取对象
删除文件https://ref.mingming.dev/docs/python.html#删除文件
检查和删除https://ref.mingming.dev/docs/python.html#检查和删除
删除文件夹https://ref.mingming.dev/docs/python.html#删除文件夹
Python 类和继承https://ref.mingming.dev/docs/python.html#python-类和继承
定义https://ref.mingming.dev/docs/python.html#定义-1
构造函数https://ref.mingming.dev/docs/python.html#构造函数
方法https://ref.mingming.dev/docs/python.html#方法
类变量https://ref.mingming.dev/docs/python.html#类变量
super() 函数https://ref.mingming.dev/docs/python.html#super-函数
repr() 方法https://ref.mingming.dev/docs/python.html#repr-方法
用户定义的异常https://ref.mingming.dev/docs/python.html#用户定义的异常
多态性https://ref.mingming.dev/docs/python.html#多态性
重写https://ref.mingming.dev/docs/python.html#重写
继承https://ref.mingming.dev/docs/python.html#继承
属性封装与访问控制https://ref.mingming.dev/docs/python.html#属性封装与访问控制
Python 数据模型https://ref.mingming.dev/docs/python.html#python-数据模型
自定义类创建https://ref.mingming.dev/docs/python.html#自定义类创建
上下文管理器https://ref.mingming.dev/docs/python.html#上下文管理器
特殊方法https://ref.mingming.dev/docs/python.html#特殊方法
Python 类型标注 (Python 3.5+)https://ref.mingming.dev/docs/python.html#python-类型标注-python-35
变量https://ref.mingming.dev/docs/python.html#变量-1
变量https://ref.mingming.dev/docs/python.html#变量-2
参数https://ref.mingming.dev/docs/python.html#参数
位置参数https://ref.mingming.dev/docs/python.html#位置参数-1
返回值https://ref.mingming.dev/docs/python.html#返回值
多种可能的返回值https://ref.mingming.dev/docs/python.html#多种可能的返回值
关键字参数https://ref.mingming.dev/docs/python.html#关键字参数-1
多个返回值https://ref.mingming.dev/docs/python.html#多个返回值
多种可能的返回值 (3.10+)https://ref.mingming.dev/docs/python.html#多种可能的返回值-310
属性https://ref.mingming.dev/docs/python.html#属性
标注自己https://ref.mingming.dev/docs/python.html#标注自己
标注自己 (3.11+)https://ref.mingming.dev/docs/python.html#标注自己-311
标注一个值为类型的参数https://ref.mingming.dev/docs/python.html#标注一个值为类型的参数
标注一个值为函数的参数https://ref.mingming.dev/docs/python.html#标注一个值为函数的参数
各种各样的https://ref.mingming.dev/docs/python.html#各种各样的
注释https://ref.mingming.dev/docs/python.html#注释
生成器https://ref.mingming.dev/docs/python.html#生成器
要列出的生成器https://ref.mingming.dev/docs/python.html#要列出的生成器
处理异常https://ref.mingming.dev/docs/python.html#处理异常
高阶函数maphttps://ref.mingming.dev/docs/python.html#高阶函数map
高阶函数sortedhttps://ref.mingming.dev/docs/python.html#高阶函数sorted
高阶函数reducehttps://ref.mingming.dev/docs/python.html#高阶函数reduce
偏函数https://ref.mingming.dev/docs/python.html#偏函数
pyenv & pipenvhttps://ref.mingming.dev/docs/python.html#pyenv--pipenv
pyenvhttps://ref.mingming.dev/docs/python.html#pyenv
pipenvhttps://ref.mingming.dev/docs/python.html#pipenv
另见https://ref.mingming.dev/docs/python.html#另见
https://ref.mingming.dev/docs/python.html#入门
https://ref.mingming.dev/docs/python.html#介绍
Python 官方网站https://www.python.org/
Python 文档https://docs.python.org/zh-cn/3/index.html
Y 分钟学会 Pythonhttps://learnxinyminutes.com/docs/zh-cn/python-cn/
Python 中的正则表达式https://ref.mingming.dev/docs/regex.html#python-%E4%B8%AD%E7%9A%84%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F
https://ref.mingming.dev/docs/python.html#控制台打印
https://ref.mingming.dev/docs/python.html#变量
https://ref.mingming.dev/docs/python.html#内置数据类型
数据类型https://ref.mingming.dev/docs/python.html#python-%E6%95%B0%E6%8D%AE%E7%B1%BB%E5%9E%8B
https://ref.mingming.dev/docs/python.html#字符串切片
字符串https://ref.mingming.dev/docs/python.html#python-%E5%AD%97%E7%AC%A6%E4%B8%B2
https://ref.mingming.dev/docs/python.html#列表
列表https://ref.mingming.dev/docs/python.html#python-%E5%88%97%E8%A1%A8
https://ref.mingming.dev/docs/python.html#判断
判断https://ref.mingming.dev/docs/python.html#python-%E5%88%A4%E6%96%AD
https://ref.mingming.dev/docs/python.html#循环
循环https://ref.mingming.dev/docs/python.html#python-%E5%BE%AA%E7%8E%AF
https://ref.mingming.dev/docs/python.html#函数
函数https://ref.mingming.dev/docs/python.html#%E5%87%BD%E6%95%B0
https://ref.mingming.dev/docs/python.html#文件处理
文件处理https://ref.mingming.dev/docs/python.html#python-%E6%96%87%E4%BB%B6%E5%A4%84%E7%90%86
https://ref.mingming.dev/docs/python.html#算术
StackOverflowhttps://stackoverflow.com/a/183870/13192320
https://ref.mingming.dev/docs/python.html#加等于
https://ref.mingming.dev/docs/python.html#f-字符串-python-36
f-字符串https://ref.mingming.dev/docs/python.html#python-f-%E5%AD%97%E7%AC%A6%E4%B8%B2-python-36
https://ref.mingming.dev/docs/python.html#python-数据类型
https://ref.mingming.dev/docs/python.html#字符串
字符串https://ref.mingming.dev/docs/python.html#python-%E5%AD%97%E7%AC%A6%E4%B8%B2
https://ref.mingming.dev/docs/python.html#数值
https://ref.mingming.dev/docs/python.html#布尔值
https://ref.mingming.dev/docs/python.html#列表-1
列表https://ref.mingming.dev/docs/python.html#python-%E5%88%97%E8%A1%A8
https://ref.mingming.dev/docs/python.html#元组
https://ref.mingming.dev/docs/python.html#集合
https://ref.mingming.dev/docs/python.html#字典
https://ref.mingming.dev/docs/python.html#类型转换
https://ref.mingming.dev/docs/python.html#转换为整数
https://ref.mingming.dev/docs/python.html#转换为浮点数
https://ref.mingming.dev/docs/python.html#转换为字符串
https://ref.mingming.dev/docs/python.html#python-字符串
https://ref.mingming.dev/docs/python.html#下标访问
https://ref.mingming.dev/docs/python.html#循环-1
https://ref.mingming.dev/docs/python.html#切割字符串
https://ref.mingming.dev/docs/python.html#步长
https://ref.mingming.dev/docs/python.html#获取长度
https://ref.mingming.dev/docs/python.html#重复多次
https://ref.mingming.dev/docs/python.html#存在性判断
https://ref.mingming.dev/docs/python.html#字符串拼接
https://ref.mingming.dev/docs/python.html#格式化
https://ref.mingming.dev/docs/python.html#format-方法
https://ref.mingming.dev/docs/python.html#转义符号
https://ref.mingming.dev/docs/python.html#控制台输入
https://ref.mingming.dev/docs/python.html#头尾判断
https://ref.mingming.dev/docs/python.html#插入分隔符拼接
https://ref.mingming.dev/docs/python.html#python-f-字符串-python-36
https://ref.mingming.dev/docs/python.html#f-字符串-用法
格式字符串字面值https://docs.python.org/zh-cn/3/reference/lexical_analysis.html#f-strings
https://ref.mingming.dev/docs/python.html#填充对齐
https://ref.mingming.dev/docs/python.html#按类型输出
https://ref.mingming.dev/docs/python.html#显示正负号
https://ref.mingming.dev/docs/python.html#其它
https://ref.mingming.dev/docs/python.html#python-列表
https://ref.mingming.dev/docs/python.html#定义
https://ref.mingming.dev/docs/python.html#生成
https://ref.mingming.dev/docs/python.html#添加元素
https://ref.mingming.dev/docs/python.html#切片
https://ref.mingming.dev/docs/python.html#切片-1
https://ref.mingming.dev/docs/python.html#省略索引
https://ref.mingming.dev/docs/python.html#间隔索引
https://ref.mingming.dev/docs/python.html#删除
https://ref.mingming.dev/docs/python.html#列表边界
https://ref.mingming.dev/docs/python.html#连接
https://ref.mingming.dev/docs/python.html#排序和反转
https://ref.mingming.dev/docs/python.html#计数
https://ref.mingming.dev/docs/python.html#重复
https://ref.mingming.dev/docs/python.html#搜索
https://ref.mingming.dev/docs/python.html#python-判断
https://ref.mingming.dev/docs/python.html#if-else
https://ref.mingming.dev/docs/python.html#if-elif-else
https://ref.mingming.dev/docs/python.html#三目运算
https://ref.mingming.dev/docs/python.html#python-循环
https://ref.mingming.dev/docs/python.html#一般形式
https://ref.mingming.dev/docs/python.html#带索引
https://ref.mingming.dev/docs/python.html#while-循环
https://ref.mingming.dev/docs/python.html#跳出循环
https://ref.mingming.dev/docs/python.html#跳过一轮循环
https://ref.mingming.dev/docs/python.html#范围循环
https://ref.mingming.dev/docs/python.html#使用-zip
https://ref.mingming.dev/docs/python.html#列表生成式
https://ref.mingming.dev/docs/python.html#python-函数
https://ref.mingming.dev/docs/python.html#基础
https://ref.mingming.dev/docs/python.html#返回
https://ref.mingming.dev/docs/python.html#位置参数
https://ref.mingming.dev/docs/python.html#关键字参数
https://ref.mingming.dev/docs/python.html#返回多个
https://ref.mingming.dev/docs/python.html#默认值
https://ref.mingming.dev/docs/python.html#匿名函数
https://ref.mingming.dev/docs/python.html#python-解包
序列https://docs.python.org/zh-cn/3/library/stdtypes.html#sequence-types-list-tuple-range
gettexthttps://docs.python.org/zh-cn/3/library/gettext.html
https://ref.mingming.dev/docs/python.html#等量解包
https://ref.mingming.dev/docs/python.html#适量解包
https://ref.mingming.dev/docs/python.html#过量解包
序列https://docs.python.org/zh-cn/3/library/stdtypes.html#sequence-types-list-tuple-range
位置参数https://ref.mingming.dev/docs/python.html#%E4%BD%8D%E7%BD%AE%E5%8F%82%E6%95%B0
https://ref.mingming.dev/docs/python.html#解包取左边
https://ref.mingming.dev/docs/python.html#解包取两边
https://ref.mingming.dev/docs/python.html#解包取右边
https://ref.mingming.dev/docs/python.html#解包集合
集合https://docs.python.org/zh-cn/3/library/stdtypes.html#set-types-set-frozenset
https://ref.mingming.dev/docs/python.html#解包迭代器
迭代器https://docs.python.org/zh-cn/3/library/stdtypes.html#iterator-types
https://ref.mingming.dev/docs/python.html#解包字典
https://ref.mingming.dev/docs/python.html#生成式中的解包
https://ref.mingming.dev/docs/python.html#迭代中解包
https://ref.mingming.dev/docs/python.html#函数中的解包
https://ref.mingming.dev/docs/python.html#python-模块
https://ref.mingming.dev/docs/python.html#导入模块
https://ref.mingming.dev/docs/python.html#从一个模块导入
https://ref.mingming.dev/docs/python.html#导入一个模块的全部
https://ref.mingming.dev/docs/python.html#给模块起别名
https://ref.mingming.dev/docs/python.html#浏览模块的函数和属性
https://ref.mingming.dev/docs/python.html#python-文件处理
https://ref.mingming.dev/docs/python.html#读取文件
https://ref.mingming.dev/docs/python.html#逐行
https://ref.mingming.dev/docs/python.html#带行号
https://ref.mingming.dev/docs/python.html#字符串-1
https://ref.mingming.dev/docs/python.html#写入一个字符串
https://ref.mingming.dev/docs/python.html#读取一个字符串
https://ref.mingming.dev/docs/python.html#对象
https://ref.mingming.dev/docs/python.html#写一个对象
https://ref.mingming.dev/docs/python.html#读取对象
https://ref.mingming.dev/docs/python.html#删除文件
https://ref.mingming.dev/docs/python.html#检查和删除
https://ref.mingming.dev/docs/python.html#删除文件夹
https://ref.mingming.dev/docs/python.html#python-类和继承
https://ref.mingming.dev/docs/python.html#定义-1
https://ref.mingming.dev/docs/python.html#构造函数
https://ref.mingming.dev/docs/python.html#方法
https://ref.mingming.dev/docs/python.html#类变量
https://ref.mingming.dev/docs/python.html#super-函数
https://ref.mingming.dev/docs/python.html#repr-方法
https://ref.mingming.dev/docs/python.html#用户定义的异常
https://ref.mingming.dev/docs/python.html#多态性
https://ref.mingming.dev/docs/python.html#重写
https://ref.mingming.dev/docs/python.html#继承
https://ref.mingming.dev/docs/python.html#属性封装与访问控制
https://ref.mingming.dev/docs/python.html#python-数据模型
https://docs.python.org/zh-cn/3/reference/datamodel.htmlhttps://docs.python.org/zh-cn/3/reference/datamodel.html
https://ref.mingming.dev/docs/python.html#自定义类创建
自定义类创建https://docs.python.org/zh-cn/3/reference/datamodel.html#customizing-class-creation
https://ref.mingming.dev/docs/python.html#上下文管理器
上下文管理器https://docs.python.org/zh-cn/3/reference/datamodel.html#with-statement-context-managers
https://ref.mingming.dev/docs/python.html#特殊方法
https://docs.python.org/zh-cn/3/reference/datamodel.htmlhttps://docs.python.org/zh-cn/3/reference/datamodel.html
repr()https://docs.python.org/zh-cn/3/library/functions.html#repr
str 类型https://docs.python.org/zh-cn/3/library/stdtypes.html#str
bytes()https://docs.python.org/zh-cn/3/library/functions.html#func-bytes
format()https://docs.python.org/zh-cn/3/library/functions.html#format
格式化字符串字面值https://docs.python.org/zh-cn/3/reference/lexical_analysis.html#f-strings
格式规格迷你语言https://docs.python.org/zh-cn/3/library/string.html#formatspec
hash()https://docs.python.org/zh-cn/3/library/functions.html#hash
bool()https://docs.python.org/zh-cn/3/library/functions.html#bool
dir()https://docs.python.org/zh-cn/3/library/functions.html#dir
模拟泛型类型https://docs.python.org/zh-cn/3/reference/datamodel.html#emulating-generic-types
https://docs.python.org/zh-cn/3/reference/datamodel.html#customizing-instance-and-subclass-checkshttps://docs.python.org/zh-cn/3/reference/datamodel.html#customizing-instance-and-subclass-checks
https://docs.python.org/zh-cn/3/reference/datamodel.html#object.__lt__https://docs.python.org/zh-cn/3/reference/datamodel.html#object.__lt__
NotImplementedhttps://docs.python.org/zh-cn/3/reference/datamodel.html#the-standard-type-hierarchy
https://docs.python.org/zh-cn/3/reference/datamodel.html#customizing-attribute-accesshttps://docs.python.org/zh-cn/3/reference/datamodel.html#customizing-attribute-access
AttributeErrorhttps://docs.python.org/zh-cn/3/library/exceptions.html#AttributeError
自定义属性访问https://docs.python.org/zh-cn/3/reference/datamodel.html#customizing-attribute-access
https://docs.python.org/zh-cn/3/reference/datamodel.html#emulating-container-typeshttps://docs.python.org/zh-cn/3/reference/datamodel.html#emulating-container-types
operatorhttps://docs.python.org/zh-cn/3/library/operator.html
length_hint()https://docs.python.org/zh-cn/3/library/operator.html#operator.length_hint
IndexErrorhttps://docs.python.org/zh-cn/3/library/exceptions.html#IndexError
forhttps://docs.python.org/zh-cn/3/reference/compound_stmts.html#for
slice()https://docs.python.org/zh-cn/3/library/functions.html#slice
迭代器https://docs.python.org/zh-cn/3/glossary.html#term-iterator
iter()https://docs.python.org/zh-cn/3/library/functions.html#iter
for 循环https://docs.python.org/zh-cn/3/reference/compound_stmts.html#for
reversed()https://docs.python.org/zh-cn/3/library/functions.html#reversed
成员检测运算https://docs.python.org/zh-cn/3/reference/expressions.html#membership-test-details
https://docs.python.org/zh-cn/3/reference/datamodel.html#emulating-numeric-typeshttps://docs.python.org/zh-cn/3/reference/datamodel.html#emulating-numeric-types
round()https://docs.python.org/zh-cn/3/library/functions.html#round
round()https://docs.python.org/zh-cn/3/library/functions.html#round
mathhttps://docs.python.org/zh-cn/3/library/math.html#module-math
ceil()https://docs.python.org/zh-cn/3/library/math.html#math.ceil
mathhttps://docs.python.org/zh-cn/3/library/math.html#module-math
floor()https://docs.python.org/zh-cn/3/library/math.html#math.floor
mathhttps://docs.python.org/zh-cn/3/library/math.html#module-math
trunc()https://docs.python.org/zh-cn/3/library/math.html#math.trunc
这里https://docs.python.org/zh-cn/3/reference/datamodel.html#object.__index__
这里https://docs.python.org/zh-cn/3/reference/expressions.html#binary-arithmetic-operations
divmod()https://docs.python.org/zh-cn/3/library/functions.html#divmod
这里https://docs.python.org/zh-cn/3/reference/datamodel.html#object.__radd__
https://ref.mingming.dev/docs/python.html#python-类型标注-python-35
https://ref.mingming.dev/docs/python.html#变量-1
https://ref.mingming.dev/docs/python.html#变量-2
https://ref.mingming.dev/docs/python.html#参数
https://ref.mingming.dev/docs/python.html#位置参数-1
https://ref.mingming.dev/docs/python.html#返回值
https://ref.mingming.dev/docs/python.html#多种可能的返回值
https://ref.mingming.dev/docs/python.html#关键字参数-1
https://ref.mingming.dev/docs/python.html#多个返回值
https://ref.mingming.dev/docs/python.html#多种可能的返回值-310
https://ref.mingming.dev/docs/python.html#属性
https://ref.mingming.dev/docs/python.html#标注自己
https://ref.mingming.dev/docs/python.html#标注自己-311
https://ref.mingming.dev/docs/python.html#标注一个值为类型的参数
https://ref.mingming.dev/docs/python.html#标注一个值为函数的参数
https://ref.mingming.dev/docs/python.html#各种各样的
https://ref.mingming.dev/docs/python.html#注释
https://ref.mingming.dev/docs/python.html#生成器
https://ref.mingming.dev/docs/python.html#要列出的生成器
https://ref.mingming.dev/docs/python.html#处理异常
https://ref.mingming.dev/docs/python.html#高阶函数map
https://ref.mingming.dev/docs/python.html#高阶函数sorted
https://ref.mingming.dev/docs/python.html#高阶函数reduce
https://ref.mingming.dev/docs/python.html#偏函数
https://ref.mingming.dev/docs/python.html#pyenv--pipenv
https://ref.mingming.dev/docs/python.html#pyenv
更多安装方式https://github.com/pyenv/pyenv#installation
https://ref.mingming.dev/docs/python.html#pipenv
https://ref.mingming.dev/docs/python.html#另见
Python 官方网站https://www.python.org/
Python 文档https://docs.python.org/zh-cn/3/index.html
Y 分钟学会 Pythonhttps://learnxinyminutes.com/docs/zh-cn/python-cn/
Python 中的正则表达式https://ref.mingming.dev/docs/regex.html#python-%E4%B8%AD%E7%9A%84%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F
Kenny Wanghttps://wangchujiang.com/#/app

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.