Python Learning Day7】的更多相关文章

破解极验滑动验证 博客园登录url: https://account.cnblogs.com/signin?returnUrl=https%3A%2F%2Fwww.cnblogs.com%2F 代码逻辑: 1.输入用户名与密码,并点击登录 2.弹出滑动验证,获取有缺口与完整的图片 3.通过像素点进行比对,获取滑动位移距离 4.模拟人的行为轨迹 5.开始滑动 from selenium import webdriver # 用来驱动浏览器的 from selenium.webdriver impo…
python笔记 - day7 参考: http://www.cnblogs.com/wupeiqi/articles/5501365.html 面向对象,初级篇: http://www.cnblogs.com/wupeiqi/p/4493506.html   大纲: configparser模块 XML模块 shutil模块以及压缩包处理 subprocess模块 面向对象学习   configparser: 模块解析:configparser用于处理特定格式的文件,其本质上是利用open来操…
''' 在程序运行的过程中,如果发生了错误,可以事先约定返回一个错误代码,这样,就可以知道是否有错,以及出错的原因.在操作系统提供的调用中,返回错误码非常常见.比如打开文件的函数open(),成功时返回文件描述符(就是一个整数),出错时返回-1. 用错误码来表示是否出错十分不便,因为函数本身应该返回的正常结果和错误码混在一起,造成调用者必须用大量的代码来判断是否出错 ''' # Exception # 高级语言通常都内置了一套try...except...finally...的错误处理机制,Py…
Python Learning Paths Python Expert Python in Action Syntax Python objects Scalar types Operators String I/O Functions Python modules Collections Python best practices Compare Python implementations Differentiate between computations using operators…
这是自己之前整理的学习Python的资料,分享出来,希望能给别人一点帮助. Learning Plan Python是什么?- 对Python有基本的认识 版本区别 下载 安装 IDE 文件构造 Python语言 - 基础的语言知识 变量 数据类型 列表/元组/字典/集合 条件语句 循环语句 函数 模块 面向对象 异常处理 Python命令行运行时带参数 Reference Python是什么?- 对Python有基本的认识 Python为我们提供了非常完善的基础代码库,覆盖了网络.文件.GUI…
python Day7 基础数据类型的补充 str的数据类型补充 capitalize函数将首字母大写,其余变小写 s1="taibei" print(s1.capitalize()) ###结果TaiBei swapcaseh函数将大小写反转 s1="taibei" print(s1.swapcaseh()) ###结果TAIBEI title函数是每个单词的首字母大写 s1="zhu xia yu " print(s1.title()) ##…
如何开始Python语言学习? 1. 先了解它,Wiki百科:http://zh.wikipedia.org/zh-cn/Python 2. Python, Ruby等语言来自开源社区,社区的学法是Vim(编辑器) + Docs(技术文档) + Interactive Shell,再就是Code(源码) + O'Reily(书籍)    社区: http://www.reddit.com/r/python | 啄木鸟中文社区 | ChinaPythonUserGroup邮件列表 (活跃) | R…
目录 一.反射 二.socket 三.socketserver 一.反射 python中的反射功能是由以下四个内置函数提供:hasattr.getattr.setattr.delattr,改四个函数分别用于对对象内部执行:检查是否含有某成员.获取成员.设置成员.删除成员. class Foo(object): def __init__(self): self.name = 'wupeiqi' def func(self): return 'func' obj = Foo() # #### 检查是…
1.The founder of python is Guido van Rossum ,he created it on Christmas in 1989, smriti of ABC language. 2.python can be used in many areas , such as   data analysis / Internet Service/ Image Processing and so on. 3.python is an interpretive language…
An inch is worth a pound of gold, an inch of gold is hard to buy an inch of time. Slice When the scale of data is so large that we have to pick a short of the content, the best way is to use Slice. Forward Slice >>>L=range(1,101) >>>L[1:…