
python
mybulesky
这个作者很懒,什么都没留下…
展开
-
三、Python的字典排序
三、Python的字典排序推荐阅读1:http://hi.baidu.com/beynvrvbprbbklq/item/e6304e207602993295f62be5推荐阅读2:http://www.cnblogs.com/kaituorensheng/archive/2012/08/07/2627386.html下文内容部分来自以上推荐。1、关于Python字典的一转载 2013-10-17 16:01:46 · 521 阅读 · 0 评论 -
Python中引入自定义路径下的用户自定义类
自定义类如下:import mathclass Circle: # Construct a circle object def __init__(self, radius = 1): self.radius = radius def getPerimeter(self): return 2 * self.radius原创 2013-11-06 19:41:37 · 1305 阅读 · 0 评论 -
用chardet判断字符编码的方法
chardet 用来实现字符串/文件编码检测模板1、chardet下载与安装下载地址:http://pypi.python.org/pypi/chardet下载chardet后,解压chardet压缩包,直接将chardet文件夹放在应用程序目录下,就可以使用import chardet开始使用chardet了,也可以将chardet拷贝到Python系统目录下,这样你所有的pytho转载 2013-11-10 13:23:38 · 401 阅读 · 0 评论 -
为什么python中,程序开始都要敲入“# -*- coding: UTF-8 -*-” 这个有什么作用呢?
http://zhidao.baidu.com/link?url=_gXTTeHF4XvhOO5b_FMEU3_Z9x1lbftmeLB5513RK6JSJOtuTnLDpZItyzClCWdzLAv1AbVw3pRTCvdZBPe4PK转载 2013-11-10 13:28:32 · 2880 阅读 · 0 评论 -
CentOS下SVN简介、下载、安装
1 SVN简介The goal of the Subversion project is to build a version control system that is a compelling replacement for CVS in the open source community. The software is released under an Apache/BSD-s转载 2013-11-27 10:48:20 · 370 阅读 · 0 评论