如下所示:
1
2
3
4
5
6
7
|
#encoding=utf-8# x = raw_input ( "Please enter a text: " ) y = x.replace( " " ,"") f = open ( 'Output.txt' , 'w' ) print >>f, y f.close() |
以上这篇Python将文本去空格并保存到txt文件中的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u012062310/article/details/52965636