python删除多余字符串函数代码
时间: 2023-03-29 09:00:51 浏览: 73
可以使用strip()函数来删除字符串两端的多余空格或指定字符,例如:
str = " hello world! "
print(str.strip()) # 输出 "hello world!"
str = " hello world! "
print(str.strip(" !")) # 输出 "hello world"
另外,还可以使用replace()函数来替换字符串中的指定字符,例如:
str = "hello, world!"
print(str.replace(",", "")) # 输出 "hello world!"
阅读全文