# python-example **Repository Path**: aalansehaiyang/python-example ## Basic Information - **Project Name**: python-example - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-19 - **Last Updated**: 2021-01-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### python --- ### 安装库模块 ``` # 下载时指定数据源 pip3 install jieba -i https://pypi.tuna.tsinghua.edu.cn/simple # 查找已经安装的模块 pip3 list | grep jieba ``` **安装过程遇到的问题:** * [python pip 安装包下载过慢出现socket.timeout the read operation timed out](https://blog.csdn.net/qq_36226810/article/details/104610955) ### jupyter ``` # 安装jupyter pip3 install jupyter # 启动: jupyter notebook # 如果报错,少模块包 !pip3 install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ### anaconda3 ``` # 下载module库 pip install pyspark -i https://pypi.douban.com/simple ``` ### 基础知识 * [变量](doc/6.md) * 运算符 * 正则表达式 * 字符串 * [元组](doc/2.md) * [列表](doc/12.md) * [字典](doc/3.md) * [集合](doc/4.md) * if语句 * for循环 * while循环 * [函数](doc/5.md) * [类和对象](doc/7.md) * [模块](doc/8.md) * [进程](doc/9.md) * [队列](doc/10.md) * [线程](doc/11.md) * 网络编程 * 异常 * [文件和IO](doc/14.md) * [flask](doc/15.md) * [常用类库](doc/13.md) ### 进阶 * [通过docker容器方式运行python程序](doc/1.md) * [使用python操作数据库](doc/) ### TensorFlow * [TensorFlow 学习网站](http://c.biancheng.net/view/2003.html)