python
liby_362
这个作者很懒,什么都没留下…
展开
-
python_设置虚拟环境
一. 使用Pycharm 创建虚拟环境按照下图的操作步骤来创建Setting -> Project Interperter -> 新增环境–> 保存原创 2020-05-13 10:19:34 · 160 阅读 · 0 评论 -
python_requirements文件管理
python 通常使用 requirements 文件来管理第三方库通常使用下面的命令来管理1. 生成 requirements.txt 文件pip freeze > requirements.txt2. 安装 requirements.txt 文件依赖pip install -r requirements.txt原创 2020-05-13 10:02:13 · 144 阅读 · 0 评论 -
python_仓库源
阿里云https://mirrors.aliyun.com/pypi/simple/清华大学https://pypi.tuna.tsinghua.edu.cn/simple/豆瓣https://pypi.douban.com/simple/中国科学技术大学https://pypi.mirrors.ustc.edu.cn/simple/中国科技大学https:/...原创 2020-04-19 16:00:20 · 528 阅读 · 0 评论 -
python_pip_国内镜像地址
国内常用的pip镜像地址阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/豆瓣(douban) http://pypi.douban.com/simple/清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/中国科学技术大...原创 2019-11-27 11:05:21 · 1505 阅读 · 0 评论 -
python中的装饰器
python中的装饰器详解1. 装饰器的定义:在写代码的时候, 我们要遵循 开发封闭 原则, 这个原则不仅适用于面向对象的开发, 也使用与函数式编程.简单的来说就是: 已经实现的功能代码不允许修改, 但可以扩展, 封闭: 以实现的功能开发;开放: 对扩展的开发 @函数名 是python的一种 语法糖;2. 装饰器的代码实例:a. 对参数不确定的函数进行装饰参数用 ( * args, **k原创 2017-05-21 23:25:19 · 250 阅读 · 0 评论