Python
Jeff Lu
一个有理想的测试开发工程师。
擅长Ai、Fw、Fl、Br、Ae、Pr、Id、Ps等软件的安装与卸载。
精通CSS、JavaScript、PHP、ASP、 C、c++、C#、Java、Ruby、 Perl、Lisp、python、objective-C、ActionScript、Pascal、spss、sas等单词的拼写。
熟悉Windows、Linux、 Mac、Android、IOS、WP8等系统的开关机。
展开
-
python模块引入问题
背景:在Windows下编程较多,文件夹设置多了,如果没设置成Root Source,常遇到模块找不到问题。于是认真了查了下资料,并Mark如下:1. sys.pathPycharm 中的Mark Directory as Root Sources功能本质上就是将路径添加到sys.path.sys.path是python的搜索模块的路径集,是一个list。打印如下:D:\python_p...原创 2019-06-13 23:55:09 · 881 阅读 · 0 评论 -
Python 生产者消费者问题
生产者消费之模型就是,比如一个包子铺,中的顾客吃包子,和厨师做包子,不可能是将包子一块做出来,在给顾客吃,但是单线程只能这麽做,所以用多线程来执行,厨师一边做包子,顾客一边吃包子,当顾客少时,厨师做的包子就放在一个容器中,等着顾客来吃,当顾客多的时候,就从容器中先取出来给顾客吃,厨师继续做包子用队列来模拟这个容器1. 当做完一个包子后就要给顾客发送一个信号,表示已经做完,让他们吃包子...原创 2019-05-08 23:28:55 · 596 阅读 · 0 评论 -
expect学习日志-Python pexpect模块
看完expect的主要功能, 本想自己用Python对expect进行封装,方便后续直接使用Python调用,但惊喜的是网上一查,竟然发现已有人用Python实现了相关功能。模块名称是-Pexpect .Pexpect is a pure Python module for spawning child applications; controlling them; and respondin...原创 2019-03-10 23:52:59 · 506 阅读 · 0 评论 -
日志装饰器
一个简单日志装饰器记录#!/usr/bin python def trace_func(func): ''''' A decorate function to track all function invoke information with DEBUG level Usage: @trace_func def any_function(...原创 2019-02-28 23:38:44 · 397 阅读 · 0 评论 -
Pip指定国内源和设置Proxy
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/ ...原创 2018-12-25 13:41:29 · 6851 阅读 · 0 评论 -
Python中无法正常使用方向键
根因readline模块没有安装解决方法安装readline模块yum -y install readline-devel进入Python安装目录,重新执行Python的安装cd /root/lu/Python-3.6.3configuremakemake install...原创 2018-12-13 23:58:11 · 1272 阅读 · 0 评论 -
Django 运行test.py模块时报错“settings are not configured
Django 运行test.py模块时报错“settings are not configured”错误信息解决方案错误信息django.core.exceptions.ImproperlyConfigured:Requested setting DATABASES, but settings are not configured. You must either define the en...原创 2018-11-30 15:39:16 · 2455 阅读 · 0 评论 -
pip 依赖管理
生成requirements.txt文件pip freeze > requirements.txt安装requirements.txt依赖pip install -r requirements.txt原创 2018-11-14 16:51:27 · 381 阅读 · 0 评论 -
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/simp...原创 2018-11-07 22:27:53 · 421 阅读 · 0 评论 -
Pycharm连接Git及使用
https://www.cnblogs.com/xyf9575/p/7205391.html环境:Git-2.7.2-32-bit_setup.1457942412.exeTortoiseGit-2.4.0.2-64bit.msi安装配置Git后,打开Pycharm。file-->Default Settins-->Version Control-->Git--Path to G...转载 2018-07-07 12:09:38 · 702 阅读 · 0 评论 -
PyCharm永久激活破解方法
打开安装好的软件选择Activate new license with License server在License sever address处填入https://jetlicense.nss.im/点击 Activate 进行认证即可转载 2018-06-13 20:22:00 · 5881 阅读 · 1 评论