python保存二维数组到txt文件中的方法
一个非常繁琐粗暴的方法,python属于入门级水平,就酱先备份一下,如果有更好的方法再更新
arrs=[[2,15,48,4,5],[6,7,6,4,1],[2,3,6,6,7],[4,6,8,11,2]] ARRS = [] f=open('testARRS.txt','w+') for i in range(4): jointsFrame = arrs[i] #每行 ARRS.append(jointsFrame) for Ji in range(5): strNum = str(jointsFrame[Ji]) f.write(strNum) f.write(' ') f.write('\n') f.close()
np.savetxt()方法写入。
相关推荐
bizercsdn 2020-04-22
sdwylry 2020-02-20
liugan 2020-02-13
pythonpycharm 2019-05-31
cairencong 2018-06-05
JasonYeung 2018-04-13
liusarazhang 2018-04-13
逍遥友 2018-04-03
没有学不好的技术 2018-04-03
assastor 2018-04-03
waiwaiLILI 2010-03-17
xinhao 2010-03-16
farewellpoem 2010-03-05
pymanhall 2017-11-07
DCXabc 2017-09-22
Python探路者 2019-04-19
Pythonandme 2019-03-02
pythoncream 2019-01-28