python中用什么函数去掉空格 python中去除空格用什么函数

主机教程 建站分享 2年前 (2022-11-24) 151次浏览

文章摘要:python中用什么函数去掉空格 python中去除空格用什么函数

python中去掉空格的方法有以下几种 1.使用lstrip()函数去掉左边空格 string =& […]

python中去掉空格的方法有以下几种

1.使用lstrip()函数去掉左边空格

string = " * it is blank space test * "print (string.lstrip())

输出结果为:

* it is blank space test *

2.使用rstrip()函数去掉右边空格

string = "     * it is blank space test * "print (string.rstrip())

输出结果为:

       * it is blank space test *

3.使用strip()函数去掉左右两边空格

string = " * it is blank space test * "print (string.strip())

输出结果为:

* it is blank space test *

4.使用replace()函数去掉所有空格

string = " * it is blank space test * "str_new = string.replace(" ", "")print str_new

输出结果为:

*itisblankspacetest


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中用什么函数去掉空格 python中去除空格用什么函数
文章链接:http://www.7966.org/post/15619.html
转载请注明出处

喜欢 (0)