讲述函数.strip()的使用方法。
博主在查阅此函数的使用方法时,未找到当.stip()参数为空时其作用的例子,故自己测试了一次,现记录下来:
现做个总结:.strip()参数为空时,其作用是去除字符串首尾的所有空格。
- 代码:
a = 'abcd'
b = 'abcd ' # 后有3个空格
c = ' abcd ' # 前有2个空格,后有3个空格
print('a:',len(a),
'\n b:',len(b),
'\n c:',len(c),
'\n a.strip():',
len(a.strip()),
'\n b.strip():',
len(b.strip()),
'\n c.strip():',
len(c.strip() ))
- 结果
a: 4
b: 7
c: 9
a.strip(): 4
b.strip(): 4
c.strip(): 4