如何在字符串中间使用strip

时间:2019-03-24 11:32:35

标签: python

给出了字符串###hi##python##python###,如何删除'#'的所有实例?

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

预期输出:"hipythonpython"

2 个答案:

答案 0 :(得分:0)

您想要的不是strip,而是replace

v = '###hi#python#python###'
x = v.replace('#', '') 

print(x)

输出:

hipythonpython

答案 1 :(得分:0)

只需使用替换

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

输出

hipythonpython