Recientemente me contactó un amigo que programa en Java, y resulta que está haciendo algún tipo de integración en un sistema donde hace su residencia y me pidió un ejemplo sobre cómo generar archivos en texto plano con python. Aquí el ejemplo:
params = {
"foo": "This is a string",
"bar": 200
}
params = {
"foo": "This is a string",
"bar": 200
}
filename = 'texto_python.txt'
file_to_write = open(filename,'w')
file_to_write.write('El contenido del archivo es: {0} y esto un número {1} \n'.format(params["foo"], params["bar"]))
file_to_write.write('Más texto.')
file_to_write.close()
Es un ejercicio básico pero siempre necesario.
Ver en repo https://github.com/jonanx779/python-stuffs/blob/master/writing_file.py
Ver en repo https://github.com/jonanx779/python-stuffs/blob/master/writing_file.py
Comentarios
Publicar un comentario