Проект загружен на гит
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# О программе
|
||||
Данный репозиторий содержит jupyter notebook, в котором продемонстрированный базовый анализ данных и визуализация в виде графиков
|
||||
|
||||
## Источник данных
|
||||
источник датасета: [https://www.kaggle.com/datasets/alexandertesemnikov/kinopoisktop250russiandataset/data](https://www.kaggle.com/datasets/alexandertesemnikov/kinopoisktop250russiandataset/data)
|
||||
|
||||
### Установка
|
||||
Для установки необходимо клонировать репозиторий и установить зависимости из файла `Pipfile`
|
||||
|
||||
```bash
|
||||
git clone https://git.vyatsu.ru/stud178857/Pyton```
|
||||
@@ -0,0 +1,9 @@
|
||||
with open('data.txt', 'r', encoding='utf-8') as file:
|
||||
lines = file.readlines()
|
||||
|
||||
upper_lines = [line.upper() for line in lines]
|
||||
|
||||
with open('output.txt', 'w', encoding='utf-8') as file:
|
||||
file.writelines(upper_lines)
|
||||
|
||||
print("Файл output.txt успешно создан.")
|
||||
Reference in New Issue
Block a user