python怎么去掉换行符“ ”?

python

python读取文件时去掉换行符“

”的方法如下:

import os

file='bsw.txt'

f=open(file,'r')

ff=f.readlines()

for line in ff:

    line=line.rstrip("

")

    print line

使用strip()函数去掉每行结束的

strip()函数原型:

声明:str为字符串,chars为要删除的字符序列

str.strip(chars):删除s字符串中开头、结尾处,位于chars删除序列的字符

str.lstrip(chars):删除s字符串中开头处,位于chars删除序列的字符

str.rstrip(chars):删除s字符串中结尾处,位于chars删除序列的字符

更多Python知识请关注。

以上是 python怎么去掉换行符“ ”? 的全部内容, 来源链接: utcz.com/z/527447.html

回到顶部