码迷,mamicode.com
首页 > 其他好文 > 详细

使用while循环遍历文件

时间:2016-09-05 17:12:49      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:

/* 使用while循环遍历文件*/
[root@localhost test1]# vim 17.py
//add
#!/usr/bin/python

ll = open(‘/tmp/1.txt‘)
while True:
    line = ll.readline()
    if not line:
        break
    print line,

[root@localhost test1]# python 17.py
abc
sjdh

 

/* 另外一种写法,(常用),省去了去把变量关闭 */
[root@localhost test1]# vim 17.py
//add
#!/usr/bin/python

with open(‘/tmp/1.txt‘) as ll:
    while True:
      line = ll.readline()
      if not line:
          break
      print line,

[root@localhost test1]# python 17.py
abc
sjdh

 

使用while循环遍历文件

标签:

原文地址:http://www.cnblogs.com/frankielf0921/p/5842691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!