Python删除字符串中空格方法

一,方法一

repalce方法

python 复制代码
space_str = 'a b c'
cur_str = space_str.replace(' ', '')
print(cur_str)
# cur_str: abc

二,方法二

split和join方法

python 复制代码
space_str = 'a b c'
cur_str = "".join(space_str.split())
print(cur_str)
# cur_str: abc
相关推荐
geovindu5 分钟前
python: SQLAlchemy (ORM) Simple example using mysql in Ubuntu 24.04
python·mysql·ubuntu
nuclear20117 分钟前
Python 将PPT幻灯片和形状转换为多种图片格式(JPG, PNG, BMP, SVG, TIFF)
python·ppt转图片·ppt转png·ppt转jpg·ppt转svg·ppt转tiff·ppt转bmp
没有晚不了安28 分钟前
1.13作业
开发语言·python
刀客12337 分钟前
python小项目编程-中级(1、图像处理)
开发语言·图像处理·python
信阳农夫1 小时前
python 3.6.8支持的Django版本是多少?
python·django·sqlite
冷琴19961 小时前
基于Python+Vue开发的反诈视频宣传管理系统源代码
开发语言·vue.js·python
带娃的IT创业者1 小时前
《Python实战进阶》专栏 No2: Flask 中间件与请求钩子的应用
python·中间件·flask
坚持就完事了2 小时前
Python之numpy
开发语言·python·numpy
jxf_jxfcsdn2 小时前
python读取pdf文档
开发语言·python·pdf
摆烂老大2 小时前
SWAT| 水文 | SWAT模型(四):气象数据库制备(附Python代码)
python·arcgis·水文·swat模型