0
I am making a login system using very basic csv tables, because it is not the purpose of the program.
def criar_conta(self, respostas):
framelogin = pd.read_csv('C:\TCC\Aplicacao\Arquivos CSV\Login_temp.csv', encoding = '#ISO-8859-1')
login = list(framelogin["login"])
senha = list(framelogin["senha"])
respostas.append(login[0])
respostas.append(senha[0])
frameclientes = pd.read_csv('C:\TCC\Aplicacao\Arquivos CSV\Clientes.csv', encoding = '#ISO-8859-1')
my problem is this:
I need to include the contents of the list
respostas
on the last line of the CSVClientes.csv
(i don’t want to have to delete the old file and create a new one with the new line, I want the file to be opened and written in it) if possible I would like it to be using the pandas library.