# PythonLearn **Repository Path**: gin9/PythonLearn ## Basic Information - **Project Name**: PythonLearn - **Description**: Python学习 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-07-08 - **Last Updated**: 2024-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Python 学习仓库 > 案例: >> [没使用框架,简单的爬取图片](https://github.com/Kuangcp/PythonLearn/tree/master/learning/Spider/scrpy_learn/55156) - learning 普通文件 - pygame 学习pygame模块 - example 别人的案例 Python之父Guido推荐的命名规范包括如下几点: 模块名和包名采用小写字母并且以下划线分隔单词的形式; 类名采用以大写字母开头,并且以大写字母分隔单词的形式命名; 全局或者类常量,全部使用大写字母,并且以下划线分隔单词; 其余变量命名则是采用全部小写字母,并且以下划线分隔单词的形式命名。 以上的内容如果是内部的,则使用下划线开头命名。 > [生成迷宫地图](/learning/math/algorithm/intersect_gather/)