我想用 '#' 替换字符串之间的所有空格,字符串末尾之后的空格除外。
例子:
input=' hello world '
output = '#hello##world'
我知道使用rstrip()
我可以忽略 string 末尾的空格。我只想尝试不使用rstrip()
我想用 '#' 替换字符串之间的所有空格,字符串末尾之后的空格除外。
例子:
input=' hello world '
output = '#hello##world'
我知道使用rstrip()
我可以忽略 string 末尾的空格。我只想尝试不使用rstrip()