Python
楚江课的救赎
这个作者很懒,什么都没留下…
展开
-
python 排序
参考了http://huaxia524151.iteye.com/blog/1169779 谢谢huaxia524151教程。1.字符串列表排序列表的排序是python内置功能,自身含有sort方法 。如果元素是字符串,会分解成字符比较,而字符的大小是根据字符对应ascii码的大小。Python代码 >>> str_list = [转载 2013-11-23 10:08:05 · 1311 阅读 · 0 评论 -
python 对象排序
class Student: def __init__(self, name, score): self.__name__ = name self.__score__ = score def get_score(self): return self.__score__ def get_name(self): ...原创 2018-03-21 13:36:35 · 2090 阅读 · 0 评论 -
Temporary failure in name resolution
File "/usr/local/lib/python2.7/dist-packages/pip-9.0.1-py2.7.egg/pip/_vendor/cachecontrol/adapter.py", line 47, in send resp = super(CacheControlAdapter, self).send(request, **kw) File "/usr/l转载 2017-08-07 13:56:11 · 955 阅读 · 0 评论 -
python swig char*类型返回
%cstring_output_allocate does work with multiple parameters. It declares "If you see char **output as a parameter to any method, hide the parameter and return it as an additional output.Here's an ex翻译 2017-08-04 11:45:04 · 1426 阅读 · 0 评论 -
AttributeError: 'module' object has no attribute 'detect'
python源文件与关键字重名了。1. 命名py脚本时,不要与python预留字,模块名等相同2. 删除该库的.pyc文件(因为py脚本每次运行时均会生成.pyc文件;在已经生成.pyc文件的情况下,若代码不更新,运行时依旧会走pyc,所以要删除.pyc文件),重新运行代码;或者找一个可以运行代码的环境,拷贝替换当前机器的.pyc文件即可转载 2017-06-14 14:25:08 · 3912 阅读 · 1 评论 -
python __call__ 函数
class O: def __init__(self, *args, **kwargs): print "init" #super(O, self).__init__(*args, **kwargs) def __new__(cls, *args, **kwargs): print "new", cls #return原创 2017-06-19 10:02:33 · 369 阅读 · 0 评论 -
python工具 文件字符串替换
#! /usr/bin/env pythontry: filename=raw_input("Enter file name:") fobj=open(filename,'r') output = open('data.txt', 'w+') for line in fobj.readlines(): line = line.rep原创 2014-08-11 23:12:37 · 841 阅读 · 0 评论 -
python join 和 split
python join 和 split方法的使用,join用来连接字符串,split恰好相反,拆分字符串的。1.join用法示例 >>>li = ['my','name','is','bob'] >>>' '.join(li) 'my name is bob' >>>'_'.join(li) 'my_name_is_bob'转载 2014-05-26 17:33:29 · 630 阅读 · 0 评论 -
python strip()函数
python strip()函数 介绍,需要的朋友可以参考一下 函数原型声明:s为字符串,rm为要删除的字符序列s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的字符s.lstrip(rm) 删除s字符串中开头处,位于 rm删除序列的字符s.rstrip(rm) 删转载 2014-06-05 21:41:32 · 1317 阅读 · 0 评论 -
python学习笔记_文件遍历
#!usr/bin/env python# -*- coding: UTF-8 -*-import osimport stringdef vistDir2(path): list_dirs = os.walk(path) result=[] for root ,dirs,files in list_dirs: print root p原创 2014-04-07 14:11:59 · 920 阅读 · 0 评论 -
Python 爬虫把美空的图片都扒下来了
#!/usr/bin/python# -*- coding: utf-8 -*-import reimport osimport urllib2def getHtml(url): from urllib2 import HTTPError try: page = urllib2.urlopen(url) html = page.read();原创 2014-04-06 23:25:31 · 2254 阅读 · 0 评论 -
python 的file 用法
转载请注明出处:http://hi.baidu.com/leejun_2005/blog/item/f430c402ca3bb4f709fa93d5.html?timeStamp=1314566313840from:http://hi.baidu.com/jxq61/blog/item/9520011362d13acda6ef3f2e.htmlfrom: http://hi.baidu.c转载 2014-04-05 14:12:03 · 1173 阅读 · 0 评论 -
python实现哈弗曼树进行数据压缩
#!/usr/bin/python#Filename:readfile.pycodelist=[]f=file('input.txt','r')for line in f.readlines(): line=line.strip('\n') codelist+=line.split(' ')print codelist########################################原创 2013-12-14 23:05:48 · 1621 阅读 · 0 评论 -
python 实现大小写替换
input.txtReference of the C++ Language Library, with detailed descriptions of its elements and examples on how to use its functionsThe standard C++ library is a collection of functions, constants, cl原创 2013-12-02 10:23:10 · 1476 阅读 · 0 评论 -
用python 在输入的列表里 以分数筛选出 第一名 与 第二名- 急
#!/usr/bin/python#Filename:find_first_second.pydef getter(): try: name = raw_input("Play Name: ") degree = float(raw_input("FG%: ")) return (name,degree原创 2013-11-26 23:20:15 · 2213 阅读 · 0 评论 -
rabbitMQ pika demo
python3 有兴趣可以跑下github: https://github.com/chujiangke/RabbitMQ_demo.git原创 2019-07-12 15:54:18 · 405 阅读 · 0 评论