这里以删除空格为例。
s2
=
s
=
' abc 1 '
def
p
(
)
:
print
(
'\''
,
s
,
'\'\n\''
,
s2
,
'\''
,
sep
=
''
)
;
# replace用于替换,这里将原有字符串中的所有空格替换为空
print
(
'删除字符串中的所有空格:'
)
s2
=
s
.
replace
(
' '
,
''
)
p
(
)
# strip()、rstrip()、lstrip()分别用来删除、右端、左端、连续的空白字符或字符集
print
(
'\n删除两端的空白字符:'
)
s2
=
s
.
strip
(
)
p
(
)
print
(
'\n删除右端的空白字符:'
)
s2
=
s
.
rstrip
(
)
p
(
)
print
(
'\n删除左端的空白字符:'
)
s2
=
s
.
lstrip
(
)
p
(
)