“Manejo de archivos” Código de respuesta

Manejo de archivos

// basic file operations
#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream myfile;
  myfile.open ("example.txt");
  myfile << "Writing this to a file.\n";
  myfile.close();
  return 0;
}
White Spoonbill

Archivo de Python abierto

#there are many modes you can open files in. r means read.
file = open('C:\Users\yourname\files\file.txt','r')
text = file.read()

#you can write a string to it, too!
file = open('C:\Users\yourname\files\file.txt','w')
file.write('This is a typical string')

#don't forget to close it afterwards!
file.close()
Dr. Hippo

Manejo de archivos

[file example.txt]
Writing this to a file.
Said HR

Respuestas similares a “Manejo de archivos”

Preguntas similares a “Manejo de archivos”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código