📌  相关文章
📜  如何在python代码示例中删除字符串中的空格

📅  最后修改于: 2022-03-11 14:45:34.300000             🧑  作者: Mango

代码示例6
sentence = '       hello  apple         '
sentence.strip()
>>> 'hello  apple'