Cómo escribir en un archivo en Python sin eliminar todo el contenido
file = open("FILE_NAME.txt", "w+") # opens the file in both read and write mode
Fair Finch
file = open("FILE_NAME.txt", "w+") # opens the file in both read and write mode