在上面的代码中,我们首先定义了一个变量my_string,它包含一个带有空格的字符串。然后,我们使用replace()函数将空格替换为换行符,并将结果保存在新的变量new_string中。最后,我们打印出new_string的值,得到了一个每个单词都在新的一行的字符串。 使用正则表达式替换空格 除了使用replace()函数,Python还提供了re模块来...
python里 如何 替换 中文字符的空格 python替换字符串中的换行符,str1='2222222222222222asdasdadas22222222222'#去除首位字符串print(str1.strip('2'))str2='asdasdadas'#去除首位字符串空格print(str2.strip())#replace()替换中间字符串#str.replace(old,new