python中strip的用法

2026-04-13 00:37:16

1、strip()介绍:删除开头或是结尾的字符。

python中strip的用法

2、strip()删除开头空字符演示。

使用形式:string.strip('开头空字符')

python中strip的用法

3、strip()删除结尾的空字符演示。

使用形式:string.strip('结尾空字符')

python中strip的用法

4、strip()删除开头的一般字符。

使用形式:string.strip('开头一般字符')

python中strip的用法

5、strip()删除结尾的一般字符。

使用形式:string.strip('结尾字符')

python中strip的用法

相关推荐
  • 阅读量:79
  • 阅读量:107
  • 阅读量:98
  • 阅读量:167
  • 阅读量:36
  • 猜你喜欢