pythonでtxtファイルの内容をExcelファイルに書き込む


Pythonは強力な言語で、この問題を解決するのは簡単です.
まず、2つのパッケージ、xlrd、xlwtをダウンロードして、excelファイルの読み取りと書き込みを実現します.
次に、コードを参照してください.
# coding=gbk
import numpy as np
import xlrd
import xlwt
import os
f = open('txt    ','r',encoding='ANSI') #        ,         ,     ANSI  
wb = xlwt.Workbook(encoding = 'ANSI') #    excel  
ws1 = wb.add_sheet('first') #      
row = 0 #      
col = 0 #      
k = 0
for lines in f: 
    a = lines.split(' ') #txt         ‘ ’        
    k+=1
    #rb = xlrd.open_workbook('C:\\Users\\DELL\\Desktop\\biao.xlsx')   
    #ws1 = rb.get_ws1(0)
    for i in range(len(a)):
        ws1.write(row, col ,a[i])# Excel        
        col += 1
    row += 1
    col = 0
wb.save("excel    ")       

ここでは処理するしかありませんxlsファイル、処理できません.xlsxファイル