端口Python v2功能到v3

时间:2011-03-13 06:04:59

标签: python

此v2函数在v3中运行时给出“NameError:全局名称'文件'未定义”错误。

def from_file(filename, sep='\n'):  
    "Parse a file into a list of strings, separated by sep."  
    return file(filename).read().strip().split(sep)  

有人可以提供v3版本吗?

1 个答案:

答案 0 :(得分:7)

file来电更改为open