I need to save data to a CSV file without deleting the data already in the file, just create a new line with the entered data
material=str(input('Informe o material: '))
mod_elasticidade=float(input('Informe o modulo de elasticidade do material:'))
tensao_escoamento=float(input('Informe a tensao de escoamento do material:'))
historico = open("historico.csv","w")
linha=str(material)+";"+str(mod_elasticidade)+";"+str(tensao_escoamento)
historico.write(linha)
historico.close()