使用strip()删除两端空白:def remove_spaces_both_sides(text): return text.strip();2. lstrip()删左侧空白;3. rstrip()删右侧空白;4. replace()或re.sub(r"\s+", "")删所有空白字符,可封装函数复用。

在Python中,删除字符串中的空白可以使用内置的字符串方法,而不是自定义函数。但你可以将这些方法封装在函数中,方便重复调用。以下是几种常见的删除空白的方式及对应的函数写法。
使用 strip() 方法可以去除字符串开头和结尾的空白字符。
def remove_spaces_both_sides(text): return text.strip()s = " hello world " print(remove_spaces_both_sides(s)) # 输出: "hello world"
使用 lstrip() 去除字符串左侧的空白。
def remove_left_space(text): return text.lstrip()s = " hello world " print(remove_left_space(s)) # 输出: "hello world "
使用 rstrip() 去除字符串右侧的空白。
立即学习“Python免费学习笔记(深入)”;
本文档主要讲述的是Python之模块学习;python是由一系列的模块组成的,每个模块就是一个py为后缀的文件,同时模块也是一个命名空间,从而避免了变量名称冲突的问题。模块我们就可以理解为lib库,如果需要使用某个模块中的函数或对象,则要导入这个模块才可以使用,除了系统默认的模块(内置函数)不需要导入外。希望本文档会给有需要的朋友带来帮助;感兴趣的朋友可以过来看看
2
s = " hello world " print(remove_right_space(s)) # 输出: " hello world"
如果想删除字符串中所有的空白字符(空格、制表符、换行等),可以用 replace() 或 re.sub()。
def remove_all_spaces(text): return text.replace(" ", "")s = "hello world python" print(remove_all_spaces(s)) # 输出: "helloworldpython"
若还包括制表符、换行符等,可用正则:
import redef remove_all_whitespace(text): return re.sub(r"\s+", "", text)
s = " hello \t\n world " print(remove_all_whitespace(s)) # 输出: "helloworld"
基本上就这些常用方式。根据你要删除的空白位置和范围选择合适的方法即可。函数封装后更便于在项目中复用。
以上就是python如何用函数删除空白的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号