# python-study **Repository Path**: xh-python/python-study ## Basic Information - **Project Name**: python-study - **Description**: 我的python学习记录 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-11 - **Last Updated**: 2026-05-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # python-study # 一、common - [resources](md/0023022300-common/0023022300-resources/resources.md) - [base-demo](md/0023022300-common/2523042300-base-demo/base-demo.md) # 二、util 0023042300-util # 三、env - [pycharm 配置](md/0057022300-env/1023032300-pycharm-config/pycharm-config.md) - [python 3.13 - windows 安装](md/0057022300-env/1057022300-python-windows-install/python-windows-install.md) - [python 3.14 - windows 安装](md/0057022300-env/1057023300-python-3.14-windows-install/python-3.14-windows-install.md) - [pip 介绍](md/0057022300-env/2057032300-pip-介绍/pip-介绍.md) - [pip 配置](md/0057022300-env/2057042300-pip-配置/pip-配置.md) - [pip 常用命令](md/0057022300-env/2057052300-pip-常用命令/pip-常用命令.md) - [pip 镜像](md/0057022300-env/2057062300-pip-镜像/pip-镜像.md) - [Python 包管理器: uv 介绍与安装](md/0057022300-env/2123042300-uv-introduct-install/uv-introduct-install.md) - [uv 首次使用示例(在命令行中使用)](md/0057022300-env/2127042300-uv-first-use-command/uv-first-use-command.md) - [anaconda 安装(不推荐使用 anaconda 了)](md/0057022300-env/3023022300-anaconda-install/anaconda-install.md) - [anaconda 安装 opencv](md/0057022300-env/3057022300-anaconda-install-opencv/anaconda-install-opencv.md) - [python 虚拟环境](md/0057022300-env/3223032300-python-虚拟环境/python-虚拟环境.md) - [jupyter 安装与启动](md/0057022300-env/5057012300-jupyter-安装与启动/jupyter-安装与启动.md) - [jupyter 简单使用](md/0057022300-env/5057022300-jupyter-简单使用/jupyter-简单使用.md) - [jupyter 怎么打开 F 盘的数据](md/0057022300-env/5057032300-jupyter-open-f-disk-data/jupyter-open-f-disk-data.md) # 四、基础语法 - `id()` : 获取内存地址 - [代码注释](md/2057022300-base-syntax/0023122300-代码注释/代码注释.md) - [print 高阶用法](md/2057022300-base-syntax/0323032300-print-high-level-usage/print-high-level-usage.md) - [格式化输出](md/2057022300-base-syntax/0323052300-格式化输出/格式化输出.md) - [控制台输入](md/2057022300-base-syntax/0323053300-控制台输入/控制台输入.md) - [基本数据类型](md/2057022300-base-syntax/1023042300-base-data-type/base-data-type.md) - [变量与交换变量的值](md/2057022300-base-syntax/000100val/val.md) - [运算符](md/2057022300-base-syntax/000200compute/compute.md) - [条件控制(if)](md/2057022300-base-syntax/3023022300-if/if.md) - [for](md/2057022300-base-syntax/3057022300-for/for.md) - [while](md/2057022300-base-syntax/3057032300-while/while.md) - [字符串](md/2057022300-base-syntax/000500str/str.md) - [数据类型转换](md/2057022300-base-syntax/5023032300-数据类型转换/数据类型转换.md) ``` def test(): print("1111") if __name__ == '__main__': test() ``` # 五、容器 - [容器介绍](md/0323022300-container/0323022300-容器介绍/容器介绍.md) - [列表 list](md/0323022300-container/2023022300-list/list.md) - [元组 tuple](md/0323022300-container/002tuple/tuple.md) - [字典 dict](md/0323022300-container/003dict/dict.md) - [集合 set](md/0323022300-container/004set/set.md) - [公共操作](md/0323022300-container/005public-operation/public-operation.md) - [容器类型转换](md/0323022300-container/006container-type-convert/container-type-convert.md) - [推导式](md/0323022300-container/007comprehensions/comprehensions.md) # 六、函数 > 获取帮助文档: `help(filter)` - [函数式编程思想](md/2257042300-func/2323082300-func-program-thought/func-program-thought.md) - [函数基本使用介绍](md/2257042300-func/2357042300-func-base-use-introduct/func-base-use-introduct.md) - [函数的作用域(scope)](md/2257042300-func/3223042300-func-scope/func-scope.md) - [匿名函数(Lambda)](md/2257042300-func/5223042300-func-lambda/func-lambda.md) - [高阶函数(Higher-order Functions)](md/2257042300-func/5257042300-func-higher-order/func-higher-order.md) - [闭包(Closure)]() - [装饰器(Decorator)]() - [生成器(Generator)]() # 七、面向对象 - [基本使用](md/000500object/000100base-use/base-use.md) # 八、文件 - [文件相关基础语法](md/000600file/000100base-syntax/base-syntax.md) # 九、mysql - [pymysql](./md/mysql/base/base.md) # 十、flask 1. [基础信息](./md/flask/base/base.md) 2. [flask 与 pymysql 实现留言板](./md/flask/msg-board/msg-board.md) # 爬虫 - [爬虫基础](./md/spider/base/base.md) - [fiddler](./md/spider/fiddler/fiddler.md) - [Beautiful Soup](./md/spider/beautiful-soup/beautiful-soup.md) - [xpath](./md/spider/xpath/xpath.md) - [抓取mm131网站](./md/spider/mm131/mm131.md) - [requests + xpath 抓取领寓](./md/spider/umi_home/umi_home.md) - [jsonpath](./md/spider/jsonpath/jsonpath.md) - [requests + jsonpath 抓取猫眼票房](./md/spider/mao-yan/mao-yan.md) - [多线程爬虫](./md/spider/multi-thread/multi-thread.md) - [图片验证码识别](./md/spider/code-image/code-image.md) # 爬虫 - urllib - [urllib](md/spider/urllib/base/urllib.md) - [urllib 的 get 与 post](md/spider/urllib/urllib-get-and-post/urllib-get-and-post.md) - [urllib parse 编码 url](md/spider/urllib/urllib-parse/urllib-parse.md) - [urllib 使用 ProxyHandler 实现代理](md/spider/urllib/urllib-proxy-handler/urllib-proxy-handler.md) - [urllib 使用 cookie](md/spider/urllib/urllib-cookie/urllib-cookie.md) - [urllib 使用 MozillaCookieJar 登录 人人网](md/spider/urllib/urllib_login_renren/urllib_login_renren.md) - [urllib 使用抓取易读网](md/spider/urllib/urllib-yidukf/urllib-yidukf.md) # 爬虫 - requests 1. [requests 基础信息](md/spider/requests/base/base.md) # regex(正则) 1. [正则初体验](./md/regex/base/base.md) # selenium - [selenium 基础](./md/spider/selenium/base/base.md) - [selenium 基础操作](./md/spider/selenium/selenium-base-option/selenium-base-option.md) - [selenium 查找元素](./md/spider/selenium/selenium-find-element/selenium-find-element.md) - [selenium 操作元素](./md/spider/selenium/selenium-option-element/selenium-option-element.md) - [selenium 窗口切换](md/spider/selenium/selenium-window-change/selenium-window-change.md)