如何缩短包含codecs.open的一些行?

时间:2013-08-23 05:57:14

标签: python

我遇到了需要缩短14行的问题,这些行有:打开并读取特定文件。我已经在一个循环中缩短了这些行中的close()标记,但我无法想象如何使用这些行:

1 个答案:

答案 0 :(得分:3)

def read_utf8(filename):
    with codecs.open(filename, mode="r", encoding="utf8") as f:
         return f.read()

header = read_utf8("static/header")