摘要: import os filePrefix='Test' fileSuffix='.py' fileNum=7 #文件个数 for i in range(0,fileNum): filename=filePrefix+str(i)+fileSuffix with open(filename,'w') 阅读全文
posted @ 2020-10-18 16:40 ShineLe 阅读(967) 评论(0) 推荐(0)
摘要: 1、创建三维坐标轴对象Axes3D 创建Axes3D主要有两种方式,一种是利用关键字projection='3d'来实现,另一种是通过从mpl_toolkits.mplot3d导入对象Axes3D来实现,目的都是生成具有三维格式的对象Axes3D #figure:新的画布 fig=plt.figur 阅读全文
posted @ 2020-10-18 00:22 ShineLe 阅读(4746) 评论(0) 推荐(0)