当前位置:Gxlcms > Python > python在每个字符后添加空格的实例

python在每个字符后添加空格的实例

时间:2021-07-01 10:21:17 帮助过:15人阅读

这篇文章主要介绍了关于python在每个字符后添加空格的实例,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

实例如下所示:

#!/usr/bin/env Python
# coding=utf-8
file = open("chinese1.txt",'r')
file2 = open(r'chinese2.txt', 'w')# 返回一个文件对象
list1= file.readlines()
list2 = []
j = -1
for i in list1:
 j+=1
 if j % 3 == 2:
  list1[j] = ("=== \n")
 else:
  list1[j] = i
 # print(j)
 # print(list1[j])
for i in list1:
 file2.write(i)

file.close()
file2.close()
file = open(r'two_1_2.0_100w.txt', 'r')
file2 = open(r"chinese1.txt",'w')
file2.write(' '.join([f+ ' ' for fh in file for f in fh ]))
file.close()
file2.close()

相关推荐:

解决Python requests库编码 socks5代理的问题


以上就是python在每个字符后添加空格的实例的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行