python去除字符串中的换行符

replace
格式:str.replace(old, new[, max])
返回值:返回字符串中的 old(旧字符串) 替换成 new(新字符串)后生成的新字符串,如果指定第三个参数max,则替换不超过 max 次。

line=line.replace("\n","")

如果行尾符是 CR,则用replace("\r","")
如果行尾符是 LF,则用replace("\n","")

你可能感兴趣的:(python)