/
sejeenn
/
python_basic
Обзор
Документация
Войти
/
sejeenn
/
python_basic
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Module28/02_math_module/main.py
7 строк
296 B
Eugene Vorontsov
Copy repo python basic
03 фев 2025, 20:23
03 фев 2025, 20:23
a8fce4a
Код
Авторство
О чём код?
from MyMath import MyMath res_1 = MyMath.circle_len(radius=5) res_2 = MyMath.circle_sq(radius=6) square_area = MyMath.square_area(side=15) print('Длина окружности:', res_1) print('Площадь окружности:', res_2) print('Площадь квадрата:', square_area)