Posts by Oliveira • 3 points
1 post
-
-1
votes1
answer35
viewsQ: I’m not being able to assign value to my attribute by my method
class Aluno: nome = "" ra = int nota_ac = [] nota_prova = float faltas = int media = float aprovado = bool def __init__(self, arquivo): self.arquivo = open(arquivo, 'r') linha = self.arquivo.read()…