Python函数——.strip()

讲述函数.strip()的使用方法。


博主在查阅此函数的使用方法时,未找到当.stip()参数为空时其作用的例子,故自己测试了一次,现记录下来:

现做个总结:.strip()参数为空时,其作用是去除字符串首尾的所有空格。

  • 代码:
a = 'abcd'      
b = 'abcd   '   # 后有3个空格
c = '  abcd   ' # 前有2个空格,后有3个空格

print('a:',len(a),  
      '\n b:',len(b),  
      '\n c:',len(c),
      
      '\n a.strip():',
      len(a.strip()), 
      '\n b.strip():',
      len(b.strip()),
      '\n c.strip():',
      len(c.strip() ))
  • 结果
a: 4 
b: 7 
c: 9 
a.strip(): 4 
b.strip(): 4 
c.strip(): 4
Python函数strip()是用来移除字符串头尾指定的字符的。这个函数的语法形式是str.strip([chars]),其中chars是可选参数,表示要移除的字符。如果不传入chars参数,默认会移除字符串头尾的空格。以下是几个使用strip()函数的例子: 1. 使用默认参数进行移除: ``` strs = " Python " strs_new = strs.strip() print(strs) # 输出原字符串 print(strs_new) # 输出处理后字符串 ``` 输出结果: ``` Python Python ``` 2. 使用指定的字符进行移除: ``` strs = "***Python***" strs_new = strs.strip("*") print(strs) # 输出原字符串 print(strs_new) # 输出处理后字符串 ``` 输出结果: ``` ***Python*** Python ``` 这些例子展示了strip()函数的用法和效果。它可以帮助我们快速移除字符串头尾的指定字符。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [python中的strip()函数](https://blog.csdn.net/aoheng0603/article/details/101277980)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [Python内置函数(简述)—— strip()](https://blog.csdn.net/weixin_69703401/article/details/127141622)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

猫咪钓鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值