• python经典书籍推荐:Python核心编程

    作者:熊猫烧香 链接:www.pythonheidong.com/blog/article/27/ 来源:python黑洞网 对《Python核心编程》的褒奖 The long-awaited second edition of Wesley Chuns Core Python Programming proves to be well worth the waitits deep and broad coverage and useful...

    2019-04-11 10:15:43

  • python学习(六)--正则的一些例子

    import re #正则表达式 #compile函数,--将正则表达式转变为内部函数,提高执行效率 strr = "python123456" pattern = "Python" res = re.compile(pattern) #当忽略匹配大小写时 res2 = re.compile(pattern,re.I) #print(res2.search(strr)) #match函数只能匹配开头 #s...

    2019-04-11 10:15:38

  • 用turtle库显示汉诺塔问题的过程

    用turtle库显示汉诺塔问题的过程 一、什么是汉诺塔问题? 一座汉诺塔,塔内有3个座A、B、C,A座上有n个盘子,盘子大小不等,大的在下,小的在上,如图所示。把这n个盘子从A座移到C座,但每次只能移动一个盘子,并且自移动过程中,3个座上的盘子始终保持大盘在下,小盘...

    2019-04-11 10:15:35

  • python学习(四)--POST请求

    from urllib import request import urllib import re #网页版有道翻译是ajax的post请求。 #浏览器请求地址http://fanyi.youdao.com/translate_o?smartresult=dictsmartresult=rule #但是在抓取时,路径有所变化,具体原因不明。后续要了解下 translate_o -》 translat...

    2019-04-11 10:15:26

  • 【python】面向对象编程之@property、@setter、@gette

    @property装饰器作用:把一个方法变成属性调用 使用@property可以实现将类方法转换为只读属性,同时可以自定义setter、getter、deleter方法 @property@.setter class Person(object): @property def birth(self): return self._birth @birth.setter def birth(self,val...

    2019-04-11 10:15:26

  • 调试

    来源: python编程快速上手Al Sweigart 1 抛出异常 抛出异常相当于是说:停止运行这个函数中的代码,将程序执行转到 except 语句。 抛出异常使用 raise 语句。在代码中,raise 语句包含一下部分: raise 关键字 对 Exception 函数的调用 传递给 Exception 函数的字符串...

    2019-04-11 10:15:16

  • scrapy的一些容易忽视的点(模拟登陆,传递item等)

    scrapy爬虫注意事项 一、item数据只有最后一条 这种情况一般存在于对标签进行遍历时,将item对象放置在了for循环的外部。解决方式:将item放置在for循环里面。 二、item字段传递后错误,混乱 有时候会遇到这样的情况,item传递几次之后,发现不同页面的数据被混乱的组...

    2019-04-11 10:15:13

  • 科学计算库Numpy——数值计算

    矩阵 求和 乘积 最大值和最小值 最大值和最小值的位置 平均数 标准差 方差 限制 四舍五入...

    2019-04-11 10:15:09

  • python两个列表合并为字典,一个作为key,一个作为val

    两个列表合并为一个字典函数 list_dic(list1,list2)可以直接复制拿走 传入的参数为两个列表,list1准备作为key,list2准备作为value,key和value位置一一对应。 def list_dic(list1,list2): ''' two lists merge a dict,a list as key,other list as value :param list...

    2019-04-11 10:15:01

  • 1.常用turtle功能函数

    #turtle常用命令汇总,括号中的参数仅仅作为举例使用,可根据需要修改 #设置画面背景色 turtle.bgcolor("black") #设置窗口大小和在屏幕上的坐标 turtle.setup(width=200,height=200,startx=0,starty=0) #设置背景图片,只支持gif格式 turtle.bgpic("1.gif") #用户点击...

    2019-04-11 10:14:58

2