📜  删除字符串python代码示例中的空格

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

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