Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. listaTabela = []
  2. for aluno in alunos:
  3. listaLinha = ""
  4. listaLinha += str(aluno.getRA())
  5. listaLinha += ";"
  6. listaLinha += str(aluno.getNome())
  7.  
  8. listaTabela.append(listaLinha)
Add Comment
Please, Sign In to add comment