如下所示:
1
2
3
4
5
6
7
8
9
|
arrs = [ 2 , 15 , 48 , 4 , 5 , 6 , 7 , 6 , 4 , 1 , 2 , 3 , 6 , 6 , 7 , 4 , 6 , 8 ] f = open ( 'test.txt' , 'w+' ) count = 0 for temp in arrs: count + = 1 print >> f,temp, if (count % 3 = = 0 ): print >> f f.close() |
结果:
以上这篇python把数组中的数字每行打印3个并保存在文档中的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_36076233/article/details/70157404