博客是我工作的好帮手,遇到困难就来博客找资料
发布时间:2016-04-21 16:38:32
import osdir = "/home/serho/workspace/lisp"def compare(x, y): stat_x = os.stat(dir "/" x) stat_y = os.stat(dir "/" y) if stat_x.st_ctime < stat_y.st_ctime: return -1 e.........
发布时间:2016-04-21 16:26:12
#!/usr/bin/env python#-*- encoding:utf-8 -*-import os,time,statfilestats = os.stat ( 'test.txt' ) #获取文件/目录的状态#定义一个字典fileinfo = {'size':filestats [ stat.st_si.........
发布时间:2016-04-20 21:37:45
首先要搞清楚,字符串在python内部的表示是unicode编码. 因此,在做编码转换时,通常需要以unicode作为中间编码,即先将其他编码的字符串解码(decode)成unicode,再从unicode编码(encode)成另一种编码。 decode的作用是将其他编码的字符串转换成unicode编码, 如str1.decode('gb2312').........
发布时间:2016-04-20 21:25:22
python中字符串的ljust、rjust、center方法讲解这三种方法的用法差不多:s.ljust(width[, fillchar]),即长度加占位符,默认为空格,这三种在格式化输出时用着非常方便。如:>>> a="hello world">>> print a.rjust(20)' hello world'>>> print a.ljust.........
发布时间:2016-04-19 21:03:55
列表count()函数调用方法对象.count(参数)count()方法操作示例有列表['a','iplaypython.com','c','b‘,'a'],想统计字符串'a'在列表中出现的次数,可以这样操作>>> ['a','iplaypython.com','c','b','a'].count('a')2其返回值就是要统计参数出现的次数。在应用的时候最好是把列.........