- Назва проекту: Веб-магазин спортивного одягу «Спортполітен».
- Замовник: Загоруйко Олександр Дмитрович.
- Мета проекту: Створення онлайн платформи для продажу спортивних товарів з можливістю здійснення замовлень і оплати через інтернет.
- Терміни реалізації: 25.03.2026.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Protocol, runtime_checkable | |
| import requests | |
| from random import uniform | |
| @runtime_checkable | |
| class TemperatureSensor(Protocol): | |
| def read_temperature(self) -> float: | |
| """Повертає поточну температуру в градусах Цельсія""" | |
| ... | |
| def get_sensor_id(self) -> str: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from .account import BankAccount | |
| __all__ = ['BankAccount'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| void up(int& value) { | |
| value += 10; | |
| } | |
| int main() { | |
| int x = 57; | |
| int* ptr = &x; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include "functions.h" | |
| int main() { | |
| srand(time(nullptr)); | |
| size_t rows = 3, cols = 3; | |
| int** test = init2dArray(rows, cols); | |
| fillRandom2dArray(test, rows, cols); | |
| print2dArray(test, rows, cols); |