Вариант 2
1)4
3)1,2
4)1,3
5)1
6)1,3
7)4
Вариант 1
2)3,4,5,8
3)1,2
4)1,2,4
5)2
6)1,3
7)4
К сожалению на Питоне не пишу, но вот вам код на С++
//------------------------
#include <iostream>
#include <string>
#include <fstream>
#include <iterator>
using namespace std;
int main(){
setlocale (LC_ALL, "rus")
// Запись в файл
ofstream fout("favorites.dat");
fout<< "Ваш текст";
fout.close();
// чтение файла
ifstream ifs("favorites.dat");
if(ifs.is_open())
{
string s;
s.assign((istreambuf_iterator<char>(ifs.rdbuf())), istreambuf_iterator<char>());
cout << s;
ifs.close();
}
else return 0;
return 0;
}
Бит, байт, килобайт, мегабайт, гигабайт.