strip在python中怎么使用

小億
92
2024-02-28 09:33:11

在Python中,strip()函數(shù)用于去除字符串兩端的指定字符(默認(rèn)為空格)或空白符??梢允褂靡韵路绞絹?lái)使用strip()函數(shù):

  1. 使用默認(rèn)的空格字符去除兩端空格:
s = "  hello world  "
print(s.strip())  # Output: "hello world"
  1. 指定要去除的字符:
s = "!!!hello world!!!"
print(s.strip("!"))  # Output: "hello world"
  1. 去除指定字符集合:
s = "!!!hello world!!!"
print(s.strip("!d"))  # Output: "hello worl"

需要注意的是,strip()函數(shù)會(huì)返回一個(gè)新的字符串,原始字符串不會(huì)被修改。

0