2017年2月9日
摘要: 第一种:最简单的一种 //检查对象是否存在 第二种:复杂点 这种方法有一个缺点,在找不到对象的时候,会抛出异常,需要加上try catch 阅读全文
posted @ 2017-02-09 17:23 小唐师叔 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 一、Python安装 1.下载需要的安装包 官网地址下载https://www.python.org/ 百度网盘中 2.进行安装 安装全部默认直接下一步 3.安装完后,需要配置环境变量 在系统变量path中添加 Python的安装位置:C:\Python27;C:\Python27\Scripts以 阅读全文
posted @ 2017-02-09 11:30 小唐师叔 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 这是一个最简单的图像识别,将图片加载后直接利用Python的一个识别引擎进行识别 将图片中的数字通过 pytesseract.image_to_string(image)识别后将结果存入到本地的txt文件中 1 #-*-encoding:utf-8-*- 2 import pytesseract 3 阅读全文
posted @ 2017-02-09 09:16 小唐师叔 阅读(37517) 评论(0) 推荐(0) 编辑
  2016年12月21日
摘要: 1.查看表的结构: DESC tm_potential_customer; 2.查看创建表时的sql语句:SHOW CREATE TABLE tm_potential_customer ; 阅读全文
posted @ 2016-12-21 16:02 小唐师叔 阅读(185) 评论(0) 推荐(0) 编辑
  2016年12月20日
摘要: 1.根据Python版本和自己的系统下载mysqldb http://www.codegood.com/downloads 阅读全文
posted @ 2016-12-20 16:58 小唐师叔 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 第一种:如下所示参数'w',往文件中写入类容,若是filePath不存在,则会创建新的文件 需要注意的是,使用‘w’会将以前文件中存在的数据全部清除掉 第二种:如下使用参数‘a’,往文件中追加类容,若是文件不存在,会创建新的文件 使用‘a’以前文件中存在的数据不会被清除,只会在后面追加 阅读全文
posted @ 2016-12-20 15:18 小唐师叔 阅读(207) 评论(0) 推荐(0) 编辑
  2016年12月15日
摘要: 1.中断程序执行 在命令行中中断正在执行的程序,ctrl c或者ctrl break 2.SyntaxError: Non-ASCII character 需要在最开始的地方加上 : #-*-coding:utf-8-*- 3.设置行号 阅读全文
posted @ 2016-12-15 10:16 小唐师叔 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 1--》IndentationError:expected an indented block 》IndentationError: unindent does not match any outer indentation level 》IndentationError: unexpected i 阅读全文
posted @ 2016-12-15 10:12 小唐师叔 阅读(290) 评论(0) 推荐(0) 编辑
  2016年12月8日
摘要: 1.首先本机的Excel版本是2013; 2.Ranorex 右上方标题栏Project—》Project Options 阅读全文
posted @ 2016-12-08 17:18 小唐师叔 阅读(201) 评论(0) 推荐(0) 编辑
  2016年11月25日
摘要: 1 class Song(object): 2 def __init__(self,lyrics): 3 self.lyrics = lyrics 4 5 def sing_me_a_song(self): 6 for line in self.lyrics: 7 print line 8 9 ha 阅读全文
posted @ 2016-11-25 13:43 小唐师叔 阅读(375) 评论(0) 推荐(0) 编辑