为什么我在运行代码时收到此错误消息?
AttributeError: 'Workbook' object has no attribute 'get' using xlutils
我的代码是针对一种问题和答案,我需要将这些答案写入Excel。问题是用葡萄牙语写的,但我不相信会有任何重要的区别......
我的代码
from xlutils.copy import copy
import xlwt
import xlrd
nome = input('Fale seu nome: ')
idade = input('Qual a sua idade? ')
qe = 0
q = 2
wb = xlrd.open_workbook("Tabela de desempenho.xls")
wb_copy = copy(wb)
wb_copy.get.sheet(0)
print("Olá ", nome, "Vamos começar o teste.")
print("")
p1 = int(input("Qual é o valor de 2+2? "))
if p1 == 4:
print("Você acertou!")
p1 = True
else:
p1 = False
if p1 == False:
print("Reprovado")
else:
print("Aprovado!")
p2 = str(input("Qual o nome da instituição? (APENAS SIGLA)"))
if p2 == "APAE":
print("Correto")
p2 = True
else:
p2 = False
if p2 == False:
print("errado")
else:
print("Pelo certo")
if p1 == True:
qe += 1
else:
qe += 0
if p2 == True:
qe += 1
else:
qe + 0
porc = qe / q * 100
print("Seu desempenho foi: ", porc, "%")
if porc == 100:
print("Você está entre os mais adaptados!")
elif porc == 50:
print("Você está na metade, quase lá!")
else:
print("burrokkkkkkkkkkkkkkkkkkkkkk")
w_sheet.write(0,0,'Nome')
w_sheet.write(0,1,'Idade')
w_sheet.write(0,2,'Desempenho')
w_sheet.write(1,0, nome)
w_sheet.write(1,1, idade)
w_sheet.write(1,2, porc)
wb.save("Tabela de desempenho.xls")