摘要: transpose和swapaxes函数 transpose() 这个函数如果括号内不带参数,就相当于转置,和.T效果一样,而今天主要来讲解其带参数。 我们看如下一个numpy的数组: `arr=np.arange(16).reshape((2,2,4)) arr= array([[[ 0, 1, 阅读全文
posted @ 2020-03-19 15:10 爬爬QQ 阅读(189) 评论(0) 推荐(0)
摘要: 方法一: path='d:/NEWS.txt' #以写模式打开路径文件,若不存在则创建,存在则覆盖,写入nihao f=open(path,'w') f_name.write('NIHAO') #以读模式打开路径文件 f_name=open(path,'r') #读取文件 f_name.read() 阅读全文
posted @ 2020-03-18 21:08 爬爬QQ 阅读(322) 评论(0) 推荐(0)
摘要: In [197]: float('1.2345') Out[197]: 1.2345 In [198]: float('something') ValueError Traceback (most recent <ipython-input-198-439904410854> in <module> 阅读全文
posted @ 2020-03-18 20:45 爬爬QQ 阅读(2050) 评论(0) 推荐(0)
摘要: enumerate函数 ,Python内建了⼀个enumerate函数,可以返 回(i, value)元组序列: for i, value in enumerate(collection): # do something with value 当你索引数据时,使⽤enumerate的⼀个好⽅法是计算 阅读全文
posted @ 2020-03-18 16:12 爬爬QQ 阅读(517) 评论(0) 推荐(0)
摘要: 1.另外一种格式化方法: template = '{0:.2f} {1:s} are worth US${2:d}' {0:.2f}表示格式化第⼀个参数为带有两位⼩数的浮点数。 {1:s}表示格式化第⼆个参数为字符串。 {2:d}表示格式化第三个参数为⼀个整数。 template.format(4. 阅读全文
posted @ 2020-03-18 14:37 爬爬QQ 阅读(136) 评论(0) 推荐(0)
摘要: 在scrapy项目文件夹中新建一个文件,代码如下 from scrapy.cmdline import execute execute("scrapy crawl top250".split()) 原理见 https://blog.csdn.net/qq_39377418/article/detai 阅读全文
posted @ 2020-03-14 21:25 爬爬QQ 阅读(188) 评论(0) 推荐(0)
摘要: #PythonDraw.py import turtle #绘图库 turtle.setup(1000, 1000, 0, 0) ''' turtle.setup(width, height, startx, starty),设置画布窗体的大小及位置,4个参数中后两个可选setup()不是必须的 ' 阅读全文
posted @ 2020-03-14 21:20 爬爬QQ 阅读(285) 评论(0) 推荐(0)
摘要: 1.设置file-settings-Projectinterpreter 设置virtualenv environment-existingenvironment 设置system interpreter 2.设置run-edit configurations-,重点是该界面的EXCECUTE部分 阅读全文
posted @ 2020-03-14 21:03 爬爬QQ 阅读(138) 评论(0) 推荐(0)
摘要: 1 import scrapy 2 from text_info.items import TextInfoItem 3 4 class A50zwSpider(scrapy.Spider): 5 name = '50zw' 6 allowed_domains = ['m.50zw.la'] 7 s 阅读全文
posted @ 2020-03-13 23:59 爬爬QQ 阅读(476) 评论(0) 推荐(0)
摘要: 1.创建scrapy框架和爬虫程序 2.定义settings.py 3.编写spider爬虫程序 1 #!/usr/bin/python3 2 #-*-coding:UTF-8-*- 3 import scrapy 4 import sys 5 import time 6 sys.path.appe 阅读全文
posted @ 2020-03-13 21:46 爬爬QQ 阅读(830) 评论(0) 推荐(0)