摘要: selenium主要是用来做自动化测试,支持多种浏览器,爬虫中主要用来解决JavaScript渲染问题。模拟浏览器进行网页加载,当requests,urllib无法正常获取网页内容的时候 一、声明浏览器对象注意点一,Python文件名或者包名不要命名为selenium,会导致无法导入from sel 阅读全文
posted @ 2019-05-26 14:50 tootise 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Selenium selenium 是一套完整的web应用程序测试系统,包含了测试的录制(selenium IDE),编写及运行(Selenium Remote Control)和测试的并行处理(Selenium Grid)。Selenium的核心Selenium Core基于JsUnit 阅读全文
posted @ 2019-05-25 19:01 tootise 阅读(257) 评论(0) 推荐(0) 编辑
摘要: # import re'''all=[ "match", "fullmatch", "search", "sub", "subn", "split", "findall", "finditer", "compile", "purge", "template", "escape", "error", 阅读全文
posted @ 2019-05-24 15:43 tootise 阅读(285) 评论(0) 推荐(0) 编辑
摘要: import requests# #get() 方法# r = requests.get("http://www.baidu.com")# print(type(r))# print(r.status_code)# print(type(r.text))# print(r.text)# print( 阅读全文
posted @ 2019-05-23 15:57 tootise 阅读(713) 评论(0) 推荐(0) 编辑
摘要: gong1=100000*0.1gong2=gong1+100000*0.075gong3=gong2+200000*0.05gong4=gong3+200000*0.03gong5=gong4+400000*0.015i = int(input("请输入利润>>>"))if i<=100000: 阅读全文
posted @ 2018-09-18 20:40 tootise 阅读(6073) 评论(0) 推荐(0) 编辑
摘要: .程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去掉不满足条件的排列。 2.程序源代码: ''' for i in range(1,5): for j in range(1,5): for k in range(1,5): if( i != k ) and (i != 阅读全文
posted @ 2018-09-18 19:59 tootise 阅读(551) 评论(0) 推荐(0) 编辑
摘要: li = ['aa', 'dd']a = ''.join(li)print(a)li = [123, "aaa"]s = ""for i in li: s = s + str(i)print(s) 阅读全文
posted @ 2018-05-22 17:27 tootise 阅读(2122) 评论(0) 推荐(0) 编辑
摘要: q = 0w = 0v = input("请输入内容>>>")for item in v: if item.isdigit() == True: q += 1 if item in str.isalpha(): w += 1print("一共输入" + str(q) + "个数字和" + str(w 阅读全文
posted @ 2018-05-22 16:42 tootise 阅读(1867) 评论(0) 推荐(0) 编辑
摘要: #输出1 2 3 4 5 6 8 9 10n=1while n < 11: if n!=7: print(n) n = n + 1#求1到100所有数的和n=1t=0while n<101: t=n+t n=n+1print(t)#输出1到100内的奇数n=1while n<101: if n % 阅读全文
posted @ 2018-05-20 18:35 tootise 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 第一天不知道该写什么 阅读全文
posted @ 2018-05-19 18:09 tootise 阅读(86) 评论(0) 推荐(0) 编辑