python文件操作with_pythonwithstatement进行文件操作指南

#!/usr/bin/env python

from __future__ import with_statement

filename = 'for_test.txt'

def output(content):

print content

#functio solution

def controlled_execution(func):

#prepare thing

f = None

try:

#set thing up

f = open(filename, 'r')

content = f.read()

if not callable(func):

return

#deal with thing

func(content)

except IOError, e:

print 'Error %s' % str(e)

finally:

if f:

#tear thing down

f.close()

def test():

controlled_execution(output)

test()

方法2:

用yield实现一个只产生一项的generator。通过for - in 来循环。

代码片段如下:

#yield solution

def controlled_execution():

f = None

try:

f = open(filename, 'r')

thing = f.read()

#for thing in f:

yield thing

except IOError,e:

print 'Error %s' % str(e)

finally:

if f:

f.close()

def test2():

for content in controlled_execution():

output(content)

方法3:

用类的方式加上with实现。

代码片段如下:

#class solution

class controlled_execution(object):

def __init__(self):

self.f = None

def __enter__(self):

try:

f = open(filename, 'r')

content = f.read()

return content

except IOError ,e:

print 'Error %s' % str(e)

#return None

def __exit__(self, type, value, traceback):

if self.f:

print 'type:%s, value:%s, traceback:%s' % \

(str(type), str(value), str(traceback))

self.f.close()

def test3():

with controlled_execution() as thing:

if thing:

output(thing)

方法4:

用with实现。不过没有exception handle 的功能。

def test4():

with open(filename, 'r') as f:

output(f.read())

print f.read()

最后一句print是用来测试f是否已经被关闭了。

最后总结一下,写这篇文章的目的主要是受了一句话的刺激:“使用语言的好特性,不要使用那些糟糕的特性”!python真是有很多很优雅的好特性,路漫漫其修远兮,吾将上下而求索。。。

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:php中文网

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值