Crear archivos de texto con Python
Crear un archivo txt.
1
2
3
4
with open("prueba.txt", "w") as text_file:
text_file.write("Este texto se insertará en un archivo llamado prueba.txt ")
Crear archivos html con Python
Crear un archivo html con encoding.
1
2
3
4
with open("html1.html", "w", encoding="utf-8") as text_file:
text_file.write(response)
Crear archivos json con Python
Crear un archivo json.
1
2
3
4
with open("file.json", "w") as text_file:
json.dump(data, text_file)
…to be continued