How to use strip in the middle of a string
本问题已经有最佳答案,请猛点这里访问。
给定这个字符串,
1 2 3 | v ="###hi#python#python###" x = v.strip("#") print(x) |
预期产量:
只需使用替换
1 2 3 | the_str = '###hi##python##python###' clean_str = the_str.replace('#','') print(clean_str) |
产量
1 | hipythonpython |
你要的不是
1 2 3 4 | v = '###hi#python#python###' x = v.replace('#', '') print(x) |
输出:
1 | hipythonpython |