发现python到用的时候才知道自己掌握的有多烂了
赶快把今天自己用到的python记下来,免得后面又忘记了
查看目录下的文件
import os
file_set=os.listdir('dirname')
查看文目录是否存在
import os
if os.path.exists('dirname'):
print 'exists'
else:
print 'u can create it!'
os.path.isfile('a.txt') #如果不存在就返回False
字符串查找/拼接
lines=open('filename','r').readlines()
file_buffer=''.join(lines)
begin=file_buffer.find('begin_ch')
end=file_buffer.find('end_ch')
fp=open('new_file_name', 'w')
fp.write(file_buffer[begin:end+1])
fp.close
阅读(485) | 评论(0) | 转发(0) |