python 按每行读取文件怎么去掉换行符

python按每行读取文件后,会在每行末尾带上换行符,这样非常不方便后续业务处理逻辑,需要去掉每行的换行符,怎么去掉呢?看下面的案例:

>>> a = "hello world\n"
>>> print a #可以看到hello world下面空了一格
hello world >>> a.split() #通过split方法将字符转换成列表
['hello', 'world'] #从列表中取第一个字符
>>> a.split()[0]
'hello'
>>>

http://www.cnblogs.com/rayong/p/7141507.html

上一篇:Passing the Message 单调栈两次


下一篇:在单体应用的一些DDD实践经验