python
文章平均质量分 58
caoshuming_500
这个作者很懒,什么都没留下…
展开
-
Python中self的理解
1. self 关键字的理解类的方法与普通的函数只有一个特别的区别——它们必须有一个额外的第一个参数名称,但是在调用这个方法的时候你不为这个参数赋值,Python会提供这个值。这个特别的变量指对象本身,按照惯例它的名称是self。虽然你可以给这个参数任何名称,但是 强烈建议 你使用self这个名称——其他名称都是不赞成你使用的。使用一个标准的名称有很多优点——你的程序读者可以迅速识别它,如原创 2014-03-27 17:05:30 · 810 阅读 · 0 评论 -
python urllib2 实现HTTP 的GET POST 请求
1. python 一般可以用模块urllib2 来实现GET POST的http 请求1.1 GET 请求import os,sysimport urllib2http_str = 'http://127.0.0.1:12345/apps/' + serviceLine + '/clusters/' + clusterNameurl = http_str + '/mac原创 2016-05-25 18:49:50 · 28606 阅读 · 1 评论 -
python 基本知识学习
1. 动态方法,静态方法#1. 静态方法class foo(object)@staticmethoddef test_foo(): print foofoo.test_foo() #静态方法不用实例化,直接用类调用2.原创 2015-11-20 21:07:49 · 509 阅读 · 0 评论 -
socket 的理解
1. socket 网络编程的理解2. python 实现最简单的聊天程序server.py#!/usr/bin/pythonimport socket, traceback, syshost = 'localhost'port = 18888s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)s.sets原创 2016-02-01 16:00:30 · 4119 阅读 · 0 评论 -
python 安装第三方mod
我们在用python 时经常遇到ImportError: No module named问题原创 2015-03-19 12:45:01 · 709 阅读 · 0 评论 -
python 中 if __name__ == "__main__" 的理解
1. python 中模块的__name__ 属性原创 2014-10-04 13:08:52 · 6250 阅读 · 0 评论 -
unicode utf-8 的理解
unicode 的简介:unicode 又称为万国码、国际码、原创 2014-08-26 15:36:26 · 988 阅读 · 0 评论 -
python 操作文件
1. read readline readlines的区别原创 2014-09-29 14:30:16 · 2840 阅读 · 0 评论 -
python split
1. split 常规用法2.原创 2014-10-06 18:24:53 · 3125 阅读 · 0 评论 -
Python 集合 set
python set 集合set 集合是一种数据类型,跟list一样原创 2014-08-26 14:02:08 · 9244 阅读 · 0 评论 -
python系列3(list tupe dict )
1. list tupe dict 的区别原创 2014-08-02 12:40:28 · 1879 阅读 · 0 评论 -
python dict 数据
1. dict 的常用方法原创 2014-08-26 10:51:15 · 2765 阅读 · 0 评论 -
pyton 字符串、list
python 字符串python list原创 2014-08-25 09:35:00 · 2318 阅读 · 0 评论 -
python 系列2(python的函数库)
1. python的标准函数库(1). 字符串函数标准原创 2014-07-25 21:34:12 · 2962 阅读 · 0 评论 -
python学习1(输入/输出函数学习)
print 函数1. 打印浮点数原创 2014-07-24 21:08:39 · 1505 阅读 · 0 评论 -
python json 的使用
1. json 的模块import json2. 一个命令(curl )返回一个json,利用json 模块来解析和展示import osimport sysimport jsonimport commandscmd = 'curl -s "http://xxxxx" 2>/dev/null' #担心执行命令有异常输出,导致最终的结果数据不是一个合法的JSONres原创 2016-05-17 19:18:28 · 694 阅读 · 0 评论