当前位置: 首页 > article >正文

python清除空格函数

python清除空格函数

mystr = '    hello world and  itcast and itheima and Python    '
# lstrip() 删除字符串左侧空白字符
print(mystr.lstrip())  #  hello world and  itcast and itheima and Python  
# rstrip() 删除字符串右侧空白字符
print(mystr.rstrip())  #      hello world and  itcast and itheima and Python
# strip()  删除字符串两侧空白字符
print(mystr.strip())  #  hello world and  itcast and itheima and Python


http://www.kler.cn/a/512161.html

相关文章:

  • 软件的收费方式
  • Spring自定义BeanPostProcessor实现bean的代理Java动态代理知识
  • 通信协议之数据帧常用校验方法(奇偶校验、CRC校验)
  • 解锁辅助驾驶新境界:基于昇腾 AI 异构计算架构 CANN 的应用探秘
  • 《Vue3 九》动画
  • java权限修饰符
  • 深入解析浏览器异步任务调度 API:让 Web 开发更高效
  • 通过Ukey或者OTP动态口令实现windows安全登录
  • ent.SetDatabaseDefaults()
  • Windows图形界面(GUI)-QT-C/C++ - Qt QToolBox详解教程
  • JSON全解析:语法、转换与FastJson应用指南
  • Linux(UOS系统:DHCP)
  • 数据库的DML
  • Kafka 日志存储 — 日志索引
  • IO模型与NIO基础二
  • 算法随笔_13: 有效三角形的个数
  • CSS 默认值
  • app测试笔记
  • 【Linux】Linux入门(一) 用户与用户组
  • AI发展困境:技术路径与实践约束的博弈
  • Linux TCP 之 RTT 采集与 RTO 计算
  • leetcode350-两个数组的交集II
  • 速通Docker === 网络
  • 进阶——第十六届蓝桥杯(sscanf的运用)
  • 云原生作业(四)
  • Hadoop美食推荐系统 爬虫1.8w+数据 协同过滤余弦函数推荐美食 Springboot Vue Element-UI前后端分离