给出了字符串###hi##python##python###
,如何删除'#'
的所有实例?
v = "###hi#python#python###"
x = v.strip("#")
print(x)
预期输出:"hipythonpython"
答案 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