上一页 1 ··· 96 97 98 99 100 101 102 103 104 ··· 123 下一页
摘要: tag_name 标签名,例如 'a'表示<a>元素get_attribute(name) 该元素name 属性的值text 该元素内的文本,例如<span>hello</span>中的'hello'clear() 对于文本字段或文本区域元素,清除其中输入的文本is_displayed() 如果该元 阅读全文
posted @ 2018-02-27 17:32 公众号python学习开发 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: 1.shutil 模块 (1) copyimport shutilshutil.copy(a, b),将路径a处的文件复制到路径b处的文件夹,a和b为路径字符串shutil.copytree(pathname1, pathname2),将路径pathname1 处的文件夹,包括它的所有文件和子文件夹 阅读全文
posted @ 2018-02-27 16:10 公众号python学习开发 阅读(229) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# @Time : ${DATE} ${TIME}# @Author : cxa# @File : ${NAME}.py# @Software: ${PRODUCT_NAME} 阅读全文
posted @ 2018-02-27 15:53 公众号python学习开发 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 本篇将介绍python中sys, getopt模块处理命令行参数 本篇将介绍python中sys, getopt模块处理命令行参数 如果想对python脚本传参数,python中对应的argc, argv(c语言的命令行参数)是什么呢?需要模块:sys参数个数:len(sys.argv)脚本名: s 阅读全文
posted @ 2018-02-27 13:53 公众号python学习开发 阅读(319) 评论(0) 推荐(0) 编辑
摘要: from:http://blog.csdn.net/ch717828/article/details/41357431 Incorrect string value: '\xE7\xA8\x8B\xE5\xBA\x8F...' for column 'course' at row 1 出现这个错误的 阅读全文
posted @ 2018-02-27 13:28 公众号python学习开发 阅读(483) 评论(0) 推荐(0) 编辑
摘要: def read_cookie(self): cookiesfilepath="cookies%s" % self.uid if os.path.exists(cookiesfilepath): ctime = os.path.getctime(cookiesfilepath)#获取文件创建时间 create = ... 阅读全文
posted @ 2018-02-27 10:33 公众号python学习开发 阅读(687) 评论(0) 推荐(0) 编辑
摘要: title="[污]" alt= "[污]" type="face" />🤗 </div> 阅读全文
posted @ 2018-02-26 19:17 公众号python学习开发 阅读(196) 评论(0) 推荐(0) 编辑
摘要: import os import time import datetime filePath=r"C:\pyweibo\cookies5673210223" ctime=os.path.getctime(filePath) create=datetime.datetime.fromtimestamp(ctime)+datetime.timedelta(days=+1)#日期加1 nowdate... 阅读全文
posted @ 2018-02-26 10:14 公众号python学习开发 阅读(918) 评论(0) 推荐(0) 编辑
摘要: 1.remove redundant parentheses 出去多余的括号,写C#习惯了先加个括号,python的if不用加括号。 改为:if chrome_args().get("headless_flag") == "1": 2.Instance attribute xxx defined o 阅读全文
posted @ 2018-02-23 11:17 公众号python学习开发 阅读(709) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-02-22 17:23 公众号python学习开发 阅读(1) 评论(0) 推荐(0) 编辑
上一页 1 ··· 96 97 98 99 100 101 102 103 104 ··· 123 下一页