标签:掉换行符 int 方便 第一个字符 pytho print color 换行 案例
python按每行读取文件后,会在每行末尾带上换行符,这样非常不方便后续业务处理逻辑,需要去掉每行的换行符,怎么去掉呢?看下面的案例:
>>> a = "hello world\n" >>> print a #可以看到hello world下面空了一格 hello world >>> a.split() #通过split方法将字符转换成列表 [‘hello‘, ‘world‘] #从列表中取第一个字符 >>> a.split()[0] ‘hello‘ >>>
标签:掉换行符 int 方便 第一个字符 pytho print color 换行 案例
原文地址:http://www.cnblogs.com/rayong/p/7553890.html