/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/code-407-113-006/main.py
10 строк
329 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
# Python (плохой пример) def calculate_total(items, discount_type): total = sum(item.price for item in items) if discount_type == "seasonal": return total * 0.9 elif discount_type == "vip": return total * 0.8 elif discount_type == "promo": return total * 0.85 return total