共计 224 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 strip()
方法来删除字符串两端的空白字符(包括空格、制表符、换行符等)。
例如:
s = " hello world "
print(s.strip()) # 输出结果为 "hello world"
如果想删除字符串中间的空白字符,可以使用 replace()
方法将空白字符替换为空字符串。
例如:
s = "hello world"
s = s.replace(" ", "")
print(s) # 输出结果为 "helloworld"
丸趣 TV 网 – 提供最优质的资源集合!
正文完