Sto cercando di caricare un foglio di lavoro attualmente esistenti e importare il file di testo (valori separati da virgola) screenshot mostrato di seguito,Python Lanciare "codec 'utf8' non è in grado di decodificare byte 0xD0 in posizione 0" Errore
foglio di Excel :
file di testo:
sto usando il codice mostrato belo w:
# importing necessary modules for performing the required operation
import glob
import csv
from openpyxl import load_workbook
import xlwt
#read the text file(s) using the CSV modules and read the dilimiters and quoutechar
for filename in glob.glob("E:\Scripting_Test\Phase1\*.txt"):
spamReader = csv.reader((open(filename, 'rb')), delimiter=',')
#read the excel file and using xlwt modules and set the active sheet
wb = load_workbook(filename=r"E:\Scripting_Test\SeqTem\Seq0001.xls")
ws = wb.worksheets(0)
#write the data that is in text file to excel file
for rowx, row in enumerate(spamReader):
for colx, value in enumerate(row):
ws.write(rowx, colx, value)
wb.save()
sto ottenendo un messaggio di errore seguente:
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd0 in position 0: invalid continuation byte
Ancora una domanda: come si può dire di pitone per importare i dati di testo a partire dalla colonna A3 nel foglio excel?
Grazie, Adam! Ho provato a farlo ma ho ancora lo stesso errore. – Raj