关于python:如何在字符串中间使用strip

How to use strip in the middle of a string

本问题已经有最佳答案,请猛点这里访问。

给定这个字符串,###hi##python##python###,如何删除'#'的所有实例?

1
2
3
v ="###hi#python#python###"
x = v.strip("#")
print(x)

预期产量:"hipythonpython"


只需使用替换

1
2
3
the_str = '###hi##python##python###'
clean_str = the_str.replace('#','')
print(clean_str)

产量

1
hipythonpython

你要的不是strip,而是replace

1
2
3
4
v = '###hi#python#python###'
x = v.replace('#', '')

print(x)

输出:

1
hipythonpython