“Обработка файлов” Ответ

Обработка файлов

// 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

Файл Python открыт

#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

Обработка файлов

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

Ответы похожие на “Обработка файлов”

Вопросы похожие на “Обработка файлов”

Смотреть популярные ответы по языку

Смотреть другие языки программирования