python 文件处理

code

with open("test") as f:
    for line in f.readlines():
        if(line):
            print(line,"<br>")

原文地址:https://www.cnblogs.com/sea-stream/p/13921007.html