使用while循环遍历文件

/* 使用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,

/* 
  这里的 "ll" -- 返回的对象
  
  对象”ll“中 有ll.readline() 这个方法

  将方法中获得的值 都存在 line这个变量里

  判断line是不是空 -是 -break
           -不是 -print line
*/

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

 

转载于:https://www.cnblogs.com/frankielf0921/p/5842691.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值