可以使用字符串的replace()方法去掉字符串内部的空格。通过将空格替换为空字符,即可去掉字符串内部的空格。
replace()
下面是一个示例代码:
string = "Python 去掉 字符串 内部 的 空格" string = string.replace(" ", "") print(string)
输出结果为:
Python去掉字符串内部的空格