python
xushaoxun
这个作者很懒,什么都没留下…
展开
-
中文保存,读取,搜索
# -*- coding: utf-8 -*- 这行到底什么作用??? #中文字符保存到文件,读取,搜索 f = open('out2.txt', 'w') f.write('你好吗?') f.close() #文件可正常显示中文。 #读取, print 到eclipse cosole f = open('out2.txt') s = f.read...2008-09-05 11:36:17 · 118 阅读 · 0 评论 -
python的3种时间表示
# -*- coding: utf8 -*- import time #时间表示 # 1.time tuple: (year, month, date, hour, mn, sec...) # 2.time string: Sat Jun 06 16:33:20 1998 # 3.time seconds since Epoch print time.asctime() ...2008-09-15 13:05:34 · 186 阅读 · 0 评论 -
os模块
#path in windows a='d:/dev/cygwin' b = os.path.normpath(a) #'d:\\dev\\cygwin' #decide file mode statinfo = os.stat(fullpath) if statinfo.st_mode&stat.S_IEXEC: print 'executable' else: ...2008-09-22 21:03:29 · 97 阅读 · 0 评论