python 常用高效代码写法集锦

Posted on 2016-03-09 15:17  Vincent90  阅读(439)  评论(0编辑  收藏  举报

一.打开文件

#使用 with 语句操作文件对象
with open(r'somefileName') as somefile:
    for line in somefile:
        print line
        # ...more code

 

Copyright © 2024 Vincent90
Powered by .NET 8.0 on Kubernetes