美文网首页
python将多个空格转换为一个空格

python将多个空格转换为一个空格

作者: 小夏_3f26 | 来源:发表于2020-06-27 15:49 被阅读0次
    1. 示例代码
    import re
    str1 = '  rwe fdsa    fasf   '
    str1_after = re.sub(' +', '', str1)
    print(str1_after)
    
    1. 参考: https://blog.csdn.net/hengxingty/article/details/82867325

    相关文章

      网友评论

          本文标题:python将多个空格转换为一个空格

          本文链接:https://www.haomeiwen.com/subject/tqqvfktx.html