python里去除字符串里多余空格的函数用法汇总
""" 作者:dfugo(chengang.net@gmail.com) 创建日期:2022/3/17 修改日期:2022/3/17 功能描述:python里去除字符串里多余空格的函数用法汇总 """ a = " hello pidancode.com " # 去除左边的空格 print(a.lstrip()) # 去除右边的空格 print(a.rstrip()) # 去除两遍的空格 print(a.strip()) # 去除所有空格 print(a.replace(' ', ''))
输出结果:
'hello pidancode.com '
' hello pidancode.com'
'hello pidancode.com'
'hellopidancode.com'
以上代码在Python3.9环境下测试通过。
相关文章