📌  相关文章
📜  使用 strip() 方法从字符串中删除换行符 - Python 代码示例

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

代码示例1
# strip() method to remove newline characters from a string
text= "\n Welcome to Python Programming \n"
print(text.strip())