python寫入txt

#寫txt def writeTxt(dataList, fileName): f = open(fileName, 'a') for ele in dataList: length = len(ele) for i in range(length-1): f.write(str(ele[i])+'\t') f
相關文章
相關標籤/搜索