分类: Python
Python使用readline逐行读取文件内容 去掉换行符"\n"

直接上脚本:

#/usr/bin/env python
# -*- coding: utf-8 -*-
f1 = open("C:\py\code\demo.txt")  #读取的文件路径
print u'文件名是', f1.name
print u'访问模式是', f1.mode
line = f1.readline()
while line:
    print ("----------%s" % (line)),    # 后面跟 ',' 将忽略换行符
    line = f1.readline()
    #line = line.strip('\n')       #也可以直接用strip去除换行符
f1.close()
print '\nok'


相关博文:

发表新评论