я тута

This commit is contained in:
Матвей Карачев 2026-04-18 10:26:09 +03:00
parent ceafe65e1b
commit 7c43b8af9d

3
abc.py
View File

@ -1,2 +1,5 @@
def calculate_total(price, tax_rate):
return price * (1 + tax_rate / 100)
if __name__ == "__main__":
print(calculate_total(1000, 20))