摘要: 方法一: 原文地址: http://blog.csdn.net/cighao/article/details/47860041 在 windows 系统下,只需要输入命令 pip install requests ,即可安装。 在 Linux 系统下,只需要输入命令 sudo pip install 阅读全文
posted @ 2017-06-11 15:22 扫驴 阅读(1107) 评论(0) 推荐(0) 编辑
摘要: 在CentOS 6.3 x86_64下安装php-mcrypt的时候出现了问题:Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again,需要安装epel源。 解决方法: 一句 阅读全文
posted @ 2017-06-08 21:45 扫驴 阅读(488) 评论(0) 推荐(0) 编辑
摘要: centos下安装pip时失败: [root@wfm ~]# yum -y install pipLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile 阅读全文
posted @ 2017-06-08 15:59 扫驴 阅读(102145) 评论(2) 推荐(2) 编辑
摘要: 什么叫对象引用对象?d所指向的对象引用了c所指向的对象,如果c所指向的对象发生变化,[注意是对象自身发生变化,而非引用更改指向,比如c = [1,2,3]。而后,c = 3,这就是引用更改指向,引用c原先指向的是列表对象,而后指向的是整形对象3。]那么可想而知,d所指向的对象也会跟着变化 对象引用对 阅读全文
posted @ 2017-06-03 17:03 扫驴 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 在Python中,整数和短小的字符,Python都会缓存这些对象,以便重复使用。当我们创建多个等于1的引用时,实际上是让所有这些引用指向同一个对象。 阅读全文
posted @ 2017-06-02 17:39 扫驴 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 第一个语法错误是, a已经是一个类的实例对象了了,已经不是一个类了,除非这个类中有__call__方法。 第二个语法错误是,b已经是一个整数了.不代表类b了 阅读全文
posted @ 2017-06-01 17:49 扫驴 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 装饰器: 阅读全文
posted @ 2017-06-01 15:28 扫驴 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 在python中,0是否 阅读全文
posted @ 2017-05-29 16:57 扫驴 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 这是一个循环!! in 后面可跟range,enumerate,序列等 执行结果: 对上面的代码稍加改动: 执行结果: in后还可跟enumerate,enumerate返回一个enumerate对象 该对象可迭代,有指针功能,这个指针的特性类似于文件(读取文件的时候,f.read()只能读一行,读 阅读全文
posted @ 2017-05-29 16:25 扫驴 阅读(1633) 评论(1) 推荐(0) 编辑
摘要: __name__ is the class name; 返回类名 __module__ is the module name in which the class was defined; 定义此类的模块名 __dict__ is the dictionary containing the clas 阅读全文
posted @ 2017-05-27 15:57 扫驴 阅读(328) 评论(0) 推荐(0) 编辑