python print和strip

在使用这两个模块时犯过错误,总结如下:

1.print

print在打印时会自动加上换行,例如:

>>> for i in xrange(1,5):
...     print i
...
1
2
3
4

如果想屏蔽换行,则在参数后加上逗号,,打印时会用空格分隔,例如:

>>> for i in xrange(1,5):
...     print i,
...
1 2 3 4

2.strip()

split是用来去除字符串首位的空白字符的,空白字符包括tab、空格和换行,所以注意如果不想替换tab,要显示的指定去除的字符。

例如:

>>> str1 = ‘ abc        ‘
>>> str1.strip()
‘abc‘
>>> str1
‘ abc ‘
>>> str1.strip(‘ a‘)

在实际代码编写中,切记注意需要去除的空白符的位置,如果知识去除某一端的空白字符,请使用:

lstrip():去除字符串首的空白字符

rstrip():去除字符串尾的空白字符

写mapreduce程序的时候经常要切分和去除首尾的空白字符,这时候要尤其注意这些细节。

时间: 2024-10-13 10:43:14

python print和strip的相关文章

python中的strip()方法

python中字符串str的strip()方法 str.strip()就是把字符串(str)的头和尾的空格,以及位于头尾的\n \t之类给删掉. 例1: str=" python " print(str.strip()) ---> python 例2: str2 = "\n AAAA" print(str2) print(str2.strip()) ---> AAAA AAAA 例3: a= "\n ABC ABC ABC =========&

python print输出unicode字符

命令行提示符下,python print输出unicode字符时出现以下 UnicodeEncodeError: 'gbk' codec can't encode character '\u30fb 不能输出 unicode 字符,程序中断. 解决方法: sys.stdout = io.TextIOWrapper(sys.stdout.buffer, errors = 'replace', line_buffering = True) python print输出unicode字符,布布扣,bu

python的string.strip(s[, chars])方法的各种小细节

下面的英文说明是官方给出: string.strip(s[, chars]) Return a copy of the string with leading and trailing characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the stri

python print的例子

def progress(width, percent): print "%s %d%%\r" % (('%%-%ds' % width) % (width * percent / 100 * "="), percent), if percent >= 100: print sys.stdout.flush() 首先,先说明一下print的一些用法: 和C语言一样,字符串里的匹配使用‘%’和相关的转移类型组成的: 转换类型          含义 d,i  

python print格式化输出

一.速查手册 1.字符串格式化代码: 格式 描述 %% 百分号标记 %c 字符及其ASCII码 %s 字符串 %d 有符号整数(十进制) %u 无符号整数(十进制) %o 无符号整数(八进制) %x 无符号整数(十六进制) %X 无符号整数(十六进制大写字符) %e 浮点数字(科学计数法) %E 浮点数字(科学计数法,用E代替e) %f 浮点数字(用小数点符号) %g 浮点数字(根据值的大小采用%e或%f) %G 浮点数字(类似于%g) %p 指针(用十六进制打印值的内存地址) %n 存储输出字

Python:print输出中文

python3 print输出unicode字符时出现以下错误: UnicodeEncodeError: 'gbk' codec can't encode character '\u30fb 解决方法: sys.stdout = io.TextIOWrapper(sys.stdout.buffer, errors = 'replace', line_buffering = True) Python:print输出中文

Python print函数用法,print 格式化输出

原文地址:http://blog.csdn.net/zanfeng/article/details/52164124 使用print输出各型的 字符串 整数 浮点数 出度及精度控制 strHello = 'Hello Python' print strHello #输出结果:Hello Python #直接出字符串 1.格式化输出整数 python print也支持参数格式化,与C言的printf似, strHello = "the length of (%s) is %d" %('H

python print end=' ' 不换行

python3.x 实现print 不换行 python中print之后是默认换行的,是因为其默认属性 end 默认值为"\n"(\n为换行符). 做练习99乘法表时不想换行,改变print默认换行的属性就可以了. 方法: print('win147', end='[email protected]#$%^&*')   # end就表示print将如何结束,默认为end="\n"(\n为换行符) 例如: print('23 祝大家天天开心', end='!'

python中的strip()函数的用法

它的函数原型:string.strip(s[, chars]),它返回的是字符串的副本,并删除前导和后缀字符.(意思就是你想去掉字符串里面的哪些字符,那么你就把这些字符当参数传入.此函数只会删除头和尾的字符,中间的不会删除.)如果strip()的参数为空,那么会默认删除字符串头和尾的空白字符(包括\n,\r,\t这些).lstrip():去除左边rstrip():去除右边 示例一:>>> str = ' ab cd '>>> str' ab cd '>>&g